0👍
✅
You just need to use the defineComponent()
wrapper around your component object to have Typescript types:
// Will correctly type your component data, methods etc.
export default defineComponent({
setup() {}
})
Source:stackexchange.com