I'm getting an error when trying to create a dynamic input in Vue when attempting to view my app in IE. The page doesn't load and I get a "Multiple definitions of a property not allowed in strict mode."
The input has both a v-model and :value attribute and it makes sense that for most situations these conflicts however for multiple checkboxes and radio buttons the attribute is necessary to determine what the assigned value to the v-model should be.
The Vue docs even show this is the proper way to work with checkbox arrays, however they don't use a dynamic value property. Because of the way this component is used, the value needs to be dynamic.
Here is what the code looks like abstractly:
<input
v-model="questionAnswer"
:disabled="readOnly"
:type="type"
:value="value"
>
Is there any way around this error in IE? It works perfectly fine in all other browsers. Thanks!