While rewriting my VueJs project in typescript, I came across a TypeScript error.
This is a part of the component that has a custom v-model.
An input field i
This worked for me: use (this.$refs. as any).value or (this.$refs.['refField'] as any).value
(this.$refs. as any).value
(this.$refs.['refField'] as any).value