19 lines
247 B
Vue
19 lines
247 B
Vue
<template>
|
|
<div class="box">
|
|
基坑监测
|
|
<div style="color: #fff;">456</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.box{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: skyblue;
|
|
}
|
|
</style> |