16 lines
238 B
Vue
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>
|