Files
pqs-9100_client/frontend/src/views/plan/detection/index.vue

16 lines
238 B
Vue
Raw Normal View History

2024-08-23 13:19:20 +08:00
<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>