Files
pqs-9100_client/frontend/src/views/plan/detection/index.vue
hongawen 6b0128921b 项目微调
引入按需自动导入插件,避免开发人员显示导入vue的函数
2024-10-09 20:03:07 +08:00

16 lines
238 B
Vue

<template>
<div class="detection"></div>
</template>
<script lang="ts" setup>
onMounted(() => {
console.log();
});
</script>
<style lang="scss" scoped>
.detection {
width: 100%;
height: 100%;
border: 2px solid green;
}
</style>