| | |
| | | <HomeRight></HomeRight> |
| | | </template> |
| | | |
| | | <script> |
| | | <script setup> |
| | | import HomeRight from './components/HomeRight/HomeRight.vue'; |
| | | import HomeLeft from '@/views/Home/components/HomeLeft/HomeLeft.vue'; |
| | | import { getAggregation } from '@/views/Home/aggregation'; |
| | | |
| | | export default { |
| | | components: { |
| | | HomeLeft, |
| | | HomeRight, |
| | | }, |
| | | name: 'index', |
| | | provide() { |
| | | return { |
| | | index: this, |
| | | }; |
| | | }, |
| | | computed: {}, |
| | | props: [], |
| | | methods: {}, |
| | | mounted() {}, |
| | | }; |
| | | onMounted(() => { |
| | | nextTick(() => { |
| | | getAggregation() |
| | | }) |
| | | }) |
| | | |
| | | |
| | | |
| | | </script> |
| | | <style scoped lang="scss"> |
| | | </style> |