web-map/src/pages/group-editor.vue

11 lines
183 B
Vue
Raw Normal View History

2025-04-27 00:05:18 +08:00
<script setup lang="ts">
type Props = {
id: string;
};
const props = defineProps<Props>();
</script>
<template>组编辑器</template>
<!-- <style scoped lang="scss"></style> -->