Using VS Code with Vue 3 and Typescript, is it possible to get autocompletion / suggestions working in the template part of an SFC for things like component props?
As an example, let's say I have a simple component like this named UserComponent:
<template>
<div>
{{username}}
</div>
</template>
<script setup lang="ts">
interface Props {
username: string
}
const props = defineProps<Props>();
</script>
When using the component and typing in: <UserComponent u - I would expect it to suggest 'username' as a possible prop
I'm using the volar plugin for vs code, and the project was created with Vite.