videoArea.vue 1.09 KB
<template>
  <div>
      <titleBox :titles="titles"></titleBox>
      <div class="item_box">
          <img src="/static/img/pic_1.jpg" alt="网家家"/>
          <div class="title">
              美猴王系列绘本(套装共32册)
          </div>
          <div class="desc">
              规格:32册/套
          </div>
          <div class="pic_box">
              <div class="pice">
                  <div class="now">¥ 361.9</div>
                  <div class="original">¥ 399.9</div>
              </div>
              <!--<div class="btn">-->
                  <!--立即购买-->
              <!--</div>-->
          </div>
      </div>
  </div>
</template>

<script>
    import titleBox from "@/components/titleBox/titleBox";
  export default {
    name: 'videoArea',
    data () {
      return {
          titles:null
      }
    },
      components:{
          titleBox
      },
    created(){

    },
    methods: {
    }
  }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
    @import 'videoArea';
</style>