32 lines
500 B
Vue
Raw Normal View History

<template>
<div class="rightTop">
<Card title="应急记录">
</Card>
</div>
</template>
<script setup lang="ts">
import Card from "@/components/card.vue";
import { onMounted, ref } from "vue";
import { GlobalStore } from "@/stores";
const store = GlobalStore();
import * as echarts from "echarts";
onMounted(async () => {
});
</script>
<style scoped>
.rightTop {
width: 100%;
height: 100%;
}
::v-deep .h-card .content {
height: 80%;
}
::v-deep .h-card {
position: relative;
}
</style>