_code.vue 368 B

1234567891011121314151617
  1. <template>
  2. <brand-detail></brand-detail>
  3. </template>
  4. <script>
  5. import BrandDetail from '~components/mobile/brand/BrandDetail.vue'
  6. export default {
  7. layout: 'mobile',
  8. components: {
  9. BrandDetail
  10. },
  11. fetch ({ store, params }) {
  12. return Promise.all([
  13. store.dispatch('loadBrandDetail', { id: params.code })
  14. ])
  15. }
  16. }
  17. </script>