| | |
| | | <template> |
| | | <HomeLeft></HomeLeft> |
| | | <!-- <div>中间搜索</div> --> |
| | | <HomeRight></HomeRight> |
| | | <HomeLeft></HomeLeft> |
| | | <!-- <div>中间搜索</div> --> |
| | | <HomeRight></HomeRight> |
| | | |
| | | <SearchBox /> |
| | | </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'; |
| | | import SearchBox from '@/views/Home/SearchBox.vue'; |
| | | |
| | | export default { |
| | | components: { |
| | | HomeLeft, |
| | | HomeRight, |
| | | }, |
| | | name: 'index', |
| | | provide() { |
| | | return { |
| | | index: this, |
| | | }; |
| | | }, |
| | | computed: {}, |
| | | props: [], |
| | | methods: {}, |
| | | mounted() {}, |
| | | }; |
| | | onMounted(() => { |
| | | nextTick(() => { |
| | | getAggregation(); |
| | | }); |
| | | }); |
| | | </script> |
| | | <style scoped lang="scss"> |
| | | </style> |
| | | <style scoped lang="scss"></style> |