添加属性编辑器

This commit is contained in:
lhj
2024-10-08 23:45:55 +08:00
parent b813c09edd
commit 3f589622a8
4 changed files with 39 additions and 30 deletions

View 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>