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.
34 lines
627 B
34 lines
627 B
|
3 years ago
|
<!--
|
||
|
|
*@描述: 主页
|
||
|
|
*@作者:
|
||
|
|
*@日期:
|
||
|
|
*@版本:1.0
|
||
|
|
*/
|
||
|
|
-->
|
||
|
|
<template>
|
||
|
|
<ComSetup>
|
||
|
|
<template v-slot:default>
|
||
|
|
<!-- 主体内容 -->
|
||
|
|
<div class="com-body">
|
||
|
|
<CameraCenter></CameraCenter>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</ComSetup>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import ComSetup from "@/components/aside/index.vue";
|
||
|
|
import CameraCenter from "@/views/page/cameraCenter.vue";
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.com-body {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
position: relative;
|
||
|
|
margin: auto;
|
||
|
|
color: black;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|