Files
aida_front/src/views/test.vue
2026-01-07 13:02:08 +08:00

17 lines
259 B
Vue

<template>
<tesst></tesst>
</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>
</style>