Files
aida_front/src/views/test.vue
X1627315083 a3ca957c87 fix
2025-01-16 10:53:33 +08:00

22 lines
327 B
Vue

<template>
<div class='box'>
<tesst></tesst>
</div>
</template>
<script>
import { defineComponent} from "vue";
import tesst from "@/component/Canvas/test.vue";
export default defineComponent({
name: "test",
components:{
tesst
}
})
</script>
<style lang='less' scoped>
.box {
border: 1px solid #f00;
}
</style>