project init & fix ui
This commit is contained in:
40
miniprogram_npm/tdesign-miniprogram/radio-group/props.js
Normal file
40
miniprogram_npm/tdesign-miniprogram/radio-group/props.js
Normal file
@@ -0,0 +1,40 @@
|
||||
const props = {
|
||||
align: {
|
||||
type: String,
|
||||
value: null,
|
||||
},
|
||||
borderless: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
customStyle: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
value: undefined,
|
||||
},
|
||||
icon: {
|
||||
type: null,
|
||||
value: 'fill-circle',
|
||||
},
|
||||
keys: {
|
||||
type: Object,
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
options: {
|
||||
type: Array,
|
||||
},
|
||||
value: {
|
||||
type: null,
|
||||
value: null,
|
||||
},
|
||||
defaultValue: {
|
||||
type: null,
|
||||
},
|
||||
};
|
||||
export default props;
|
||||
Reference in New Issue
Block a user