浏览代码

初始化

yun-mo 1 年之前
父节点
当前提交
3e25ad7e0d
共有 1 个文件被更改,包括 12 次插入3 次删除
  1. 12 3
      src/views/goods-information/index.vue

+ 12 - 3
src/views/goods-information/index.vue

@@ -1,15 +1,24 @@
 <template>
-  <div>
+  <div class="goods_info">
     <nav-bar title="商品详情" @click-left="$router.back()"/>
   </div>
 </template>
 
 <script>
 export default {
-
+  data () {
+    return {
+    }
+  },
+  mounted () {
+    console.log(1111)
+  },
+  methods: {}
 }
 </script>
 
 <style scoped lang="scss">
-
+.goods_info {
+  width: 100%;
+}
 </style>