fix(radio): 修复主题配置radio-button无法继承属性的bug,打开可继承属性 (#82)

This commit is contained in:
chenxi-20 2023-03-24 15:34:06 +08:00 committed by GitHub
parent 05f33530e1
commit 4d34fe3788
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -51,7 +51,6 @@ import { props, setup } from '@opentiny/vue-common'
export default {
emits: ['change'],
props: [...props, 'label', 'events', 'text', 'disabled', 'name'],
inheritAttrs: false,
setup(props, context) {
return setup({ props, context, renderless, api })
}