home.vue 390 B

123456789101112131415161718
  1. <template>
  2. <div style="background: rgb(242, 241, 241);">
  3. <recommend-store></recommend-store>
  4. <nuxt-child></nuxt-child>
  5. </div>
  6. </template>
  7. <script>
  8. import { RecommendStore } from '~components/provider'
  9. export default {
  10. layout: 'main',
  11. components: {
  12. RecommendStore
  13. },
  14. fetch ({store}) {
  15. return store.dispatch('loadCounterData')
  16. }
  17. }
  18. </script>