mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
feat: The form collection 'multiple-choice box' supports custom input (#4218)
This commit is contained in:
parent
6f1c83d287
commit
c9a614cad0
|
|
@ -3,6 +3,7 @@
|
|||
class="m-2"
|
||||
multiple
|
||||
filterable
|
||||
allow-create
|
||||
clearable
|
||||
v-bind="$attrs"
|
||||
v-model="_modelValue"
|
||||
|
|
@ -43,7 +44,7 @@ const _modelValue = computed({
|
|||
},
|
||||
set($event) {
|
||||
emit('update:modelValue', $event)
|
||||
}
|
||||
},
|
||||
})
|
||||
const textField = computed(() => {
|
||||
return props.formField.text_field ? props.formField.text_field : 'key'
|
||||
|
|
|
|||
Loading…
Reference in New Issue