Blame view

src/components/car/carDetailFeeDemo.vue 298 Bytes
b25b036d   wuxw   v1.9 优化日期
1
  <template>
6d21390a   wuxw   开发车辆详情页面
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    <car-detail-fee ref="carDetailFee"></car-detail-fee>
  </template>
  
  <script>
  import CarDetailFee from '@/components/car/carDetailFee'
  
  export default {
    components: {
      CarDetailFee
    },
    methods: {
      open(data) {
        this.$refs.carDetailFee.switch(data)
      }
    }
  }
  </script>