添加属性编辑器
This commit is contained in:
21
src/components/PropertyEditor.vue
Normal file
21
src/components/PropertyEditor.vue
Normal file
@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<div>
|
||||
<a-radio-group type="button">
|
||||
<a-radio value="Beijing">Beijing</a-radio>
|
||||
<a-radio value="Shanghai">Shanghai</a-radio>
|
||||
<a-radio value="Guangzhou">Guangzhou</a-radio>
|
||||
<a-radio value="Shenzhen">Shenzhen</a-radio>
|
||||
</a-radio-group>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { defineProps, computed } from 'vue';
|
||||
|
||||
const props = defineProps({
|
||||
scheme: Object
|
||||
});
|
||||
|
||||
|
||||
const scheme = computed(() => props.scheme || '');
|
||||
</script>
|
||||
Reference in New Issue
Block a user