1
0
mirror of synced 2026-04-08 09:35:06 +08:00

feat: 新增select下的popper class

This commit is contained in:
roymondchen
2022-03-28 20:17:49 +08:00
committed by jia000
parent c3f4e41cc8
commit 8e192e7cd4
5 changed files with 23 additions and 0 deletions

View File

@@ -103,6 +103,10 @@ export default defineComponent({
type: String,
default: '__key',
},
popperClass: {
type: String,
},
},
emits: ['change', 'field-input', 'field-change'],
@@ -117,6 +121,7 @@ export default defineComponent({
const formState: FormState = reactive<FormState>({
keyProp: props.keyProp,
popperClass: props.popperClass,
config: props.config,
initValues: props.initValues,
parentValues: props.parentValues,