forked from drone/command-center-dashboard

chenyao
2025-03-28 9a19efe814fd1b3f08673935ec9a9abc3394fb7c
src/views/Home/Home.vue
@@ -4,26 +4,19 @@
    <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>