22 lines
351 B
Vue
22 lines
351 B
Vue
|
<template>
|
||
|
<div class="workbench">
|
||
|
消防监控
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
|
||
|
import { useStore } from "vuex";
|
||
|
import { useRouter } from "vue-router";
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
|
||
|
</script>
|
||
|
<style scoped lang="scss">
|
||
|
.workbench {
|
||
|
width: 100%;
|
||
|
height: calc(100vh - 140px);
|
||
|
color: #333;
|
||
|
background: #fff;
|
||
|
}
|
||
|
</style>
|