yun-mo 1 rok temu
rodzic
commit
3e25ad7e0d
1 zmienionych plików z 12 dodań i 3 usunięć
  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>