Hi - im pretty new to f7 but know vue ok .
I am trying to get a two way data bind between an input component , But the input field , when testing throws an error when i type new data into it .
error
[Vue warn]: Invalid prop: type check failed for prop "value". Expected String, Number, Array, Date, Object, got InputEvent
my code
<f7-list-input
label="Voucher Code"
type="text"
placeholder="Voucher Code"
v-model:value="voucherCode"
></f7-list-input>
…
export default {
mixins: [ApiMixin],
data() {
return {
voucherCode: 'sdfsd',
saleDate: [new Date()],
};
},
does anyone know what i am doing wrong here ? and why i am unable to find data to an f7 component … its a pretty basic need , if i cant work this out i need to go use a framework that allows me to find to its components , otherwise i cant get data in and out of them …
Thanks in advance …