forked from drone/command-center-dashboard

chenyao
2025-03-29 48bc5ec76be628ed581d3201150bddaeaadeed3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <HomeLeft></HomeLeft>
  <!-- <div>中间搜索</div> -->
  <HomeRight></HomeRight>
  <SearchBox />
</template>
 
<script setup>
import HomeRight from './components/HomeRight/HomeRight.vue';
import HomeLeft from '@/views/Home/components/HomeLeft/HomeLeft.vue';
import SearchBox from '@/views/Home/SearchBox.vue';
import { useAggregation } from '@/views/Home/useAggregation';
 
useAggregation()
</script>