[Vuejs]-How to resolve number not assignable to type Readonly<any> in typescript + vue 3 + vuetify?

0๐Ÿ‘

โœ…

I think this is because the v-model is two way binding and the Readonly type only allows assignments in the constructor. See the explanation here

Leave a comment