kind.vue 322 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <kind-box></kind-box>
  4. </div>
  5. </template>
  6. <script>
  7. import { KindBox } from '~components/product'
  8. export default {
  9. layout: 'main',
  10. fetch ({store}) {
  11. return Promise.all([
  12. store.dispatch('product/loadAllProductKinds', { id: 0 })
  13. ])
  14. },
  15. components: {
  16. KindBox
  17. }
  18. }
  19. </script>