2022-03-23 17:21:16 +08:00
|
|
|
export default {
|
|
|
|
schedule: '*',
|
|
|
|
'region-picker': '*',
|
|
|
|
embedded: '*',
|
|
|
|
'*': {
|
|
|
|
props: [
|
|
|
|
'ui',
|
|
|
|
'name',
|
|
|
|
'invalid',
|
2022-03-24 18:40:01 +08:00
|
|
|
'disabled',
|
|
|
|
'readonly',
|
2022-03-23 17:21:16 +08:00
|
|
|
'overlayClass',
|
|
|
|
'overlayStyle',
|
|
|
|
'overlayPriority',
|
|
|
|
'keyField'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
props: ['value']
|
|
|
|
},
|
|
|
|
cascader: {
|
|
|
|
emits: ['toggle']
|
|
|
|
},
|
|
|
|
checkbox: {
|
|
|
|
props: ['model']
|
|
|
|
},
|
|
|
|
radio: {
|
|
|
|
props: ['model']
|
|
|
|
},
|
|
|
|
switch: {
|
2022-03-25 13:49:27 +08:00
|
|
|
props: ['model', 'offLabel', 'onLabel'],
|
|
|
|
slots: ['content']
|
2022-03-23 17:21:16 +08:00
|
|
|
},
|
|
|
|
drawer: {
|
|
|
|
props: ['inline']
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
props: ['max'] // 脚本没识别出来,先忽略
|
|
|
|
},
|
2022-03-25 13:49:27 +08:00
|
|
|
'option-group': {
|
|
|
|
props: ['optionTag']
|
|
|
|
},
|
2022-03-23 17:21:16 +08:00
|
|
|
link: {
|
|
|
|
props: ['replace']
|
2022-03-24 18:40:01 +08:00
|
|
|
},
|
|
|
|
pagination: {
|
|
|
|
props: ['goto']
|
|
|
|
},
|
|
|
|
option: {
|
|
|
|
props: ['tag']
|
|
|
|
},
|
|
|
|
nav: {
|
|
|
|
slots: ['more']
|
|
|
|
},
|
|
|
|
input: {
|
|
|
|
emits: ['autofill']
|
|
|
|
},
|
|
|
|
progress: {
|
|
|
|
props: ['radius', 'strokeWidth']
|
2022-03-23 17:21:16 +08:00
|
|
|
}
|
|
|
|
}
|