You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
893 B

1 month ago
<template>
<LeftPanel>
<Drawer style="width: 458px">
<ProjectCountCard />
<MonitoringCard />
<InspectionCard />
</Drawer>
</LeftPanel>
<RightPanel>
<Drawer style="width: 460px">
<SafetyOverviewCard />
</Drawer>
</RightPanel>
<BottomPanel></BottomPanel>
<Map></Map>
1 month ago
</template>
<script setup lang="ts">
import LeftPanel from "../LeftPanel/index.vue";
import RightPanel from "../RightPanel/index.vue";
import BottomPanel from "../BottomPanel/index.vue";
import Drawer from "../Drawer/index.vue";
import ProjectCountCard from "./ProjectCountCard/index.vue";
import MonitoringCard from "./MonitoringCard/index.vue";
import InspectionCard from "./InspectionCard/index.vue";
import SafetyOverviewCard from "./SafetyOverviewCard/index.vue";
import Map from "./Map/index.vue";
1 month ago
defineOptions({
name: "main",
});
</script>
<style scoped></style>