18 lines
249 B
Vue
18 lines
249 B
Vue
<template>
|
|
<div class="box">
|
|
安全管理
|
|
<div style="color: #fff;">123</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.box{
|
|
width: 100%;
|
|
height: 100%;
|
|
/* background-color: pink; */
|
|
}
|
|
</style> |