2025-01-16 10:53:33 +08:00
|
|
|
<template>
|
2026-01-07 13:02:08 +08:00
|
|
|
<tesst></tesst>
|
2025-01-16 10:53:33 +08:00
|
|
|
</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>
|