11 lines
183 B
Vue
11 lines
183 B
Vue
![]() |
<script setup lang="ts">
|
||
|
type Props = {
|
||
|
id: string;
|
||
|
};
|
||
|
const props = defineProps<Props>();
|
||
|
</script>
|
||
|
|
||
|
<template>组编辑器</template>
|
||
|
|
||
|
<!-- <style scoped lang="scss"></style> -->
|