| 123456789101112131415161718 |
- <template>
- <div style="background: rgb(242, 241, 241);">
- <recommend-store></recommend-store>
- <nuxt-child></nuxt-child>
- </div>
- </template>
- <script>
- import { RecommendStore } from '~components/provider'
- export default {
- layout: 'main',
- components: {
- RecommendStore
- },
- fetch ({store}) {
- return store.dispatch('loadCounterData')
- }
- }
- </script>
|