补充部分组件描述
This commit is contained in:
@@ -5,12 +5,14 @@ export default {
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
const props = defineProps<{
|
||||
export interface LayRadioProps {
|
||||
modelValue: string;
|
||||
disabled?: boolean;
|
||||
label?: string;
|
||||
name: string;
|
||||
}>();
|
||||
}
|
||||
|
||||
const props = defineProps<LayRadioProps>();
|
||||
|
||||
const emit = defineEmits(["update:modelValue", "change"]);
|
||||
|
||||
|
||||
0
src/component/radio/interface.ts
Normal file
0
src/component/radio/interface.ts
Normal file
Reference in New Issue
Block a user