Files
maintenance_system/src/views/ueScreen/index.vue

16 lines
272 B
Vue
Raw Normal View History

2025-11-14 16:34:39 +08:00
<template>
<div class="ueScreen">大屏</div>
</template>
<script setup lang="ts"></script>
2025-11-14 16:38:51 +08:00
<style scoped lang="scss">
@import '@/views/ueScreen/gis.scss';
2025-11-14 16:34:39 +08:00
.ueScreen {
width: 100vw;
height: 100vh;
background-color: rgba(4, 7, 17, 0.8);
color: #fff;
}
</style>