How to validate the checkbox group using element plus ? #3889
-
I tried validate field checkbox group. I don't know what is wrong ? https://stackblitz.com/edit/vee-validate-v4-element-plus-8fc4gf?file=src%2FApp.vue |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I moved this to discussions since it is more of a question. You shouldn't use Also since element plus requires having a https://stackblitz.com/edit/vee-validate-v4-element-plus-436eka?file=src%2FApp.vue |
Beta Was this translation helpful? Give feedback.
I moved this to discussions since it is more of a question.
You shouldn't use
v-model="value"
as the value isn't mutable (I might reconsider this)Also since element plus requires having a
v-model
integration then you can work around it by manually bindingmodel-value
and listening toupdate:model-value
. Here is an example.https://stackblitz.com/edit/vee-validate-v4-element-plus-436eka?file=src%2FApp.vue