I'm currently working with the Quasar framework using Vue composition API and TypeScript in VSCode.
While attempting to utilize a prop in the template, Vetur is showing me an error stating
Property 'open' does not exist on type 'never'
Source
<template>
<q-drawer v-model="open">
test
</q-drawer>
</template>
<script lang="ts">
import { defineComponent, ref } from '@vue/composition-api';
export default defineComponent({
name: 'AuthedLayout',
props: {
open: {
type: Boolean,
required: true
}
},
components: {},
setup() {}
});
</script>
<style></style>
Any assistance would be greatly appreciated