16 lines
245 B
Vue
16 lines
245 B
Vue
|
|
<template>
|
||
|
|
<div class="ueScreen">大屏</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts"></script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
@import './gis.scss';
|
||
|
|
.ueScreen {
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
background-color: rgba(4, 7, 17, 0.8);
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
</style>
|