No intellisense for props/properties/attributes
Fresh new project, no intellisense for custom or nuxt components
/components/Tester.vue
/components/Tester.vue
<script setup lang="ts">
defineProps<{
foobar: string;
}>();
</script>
<template>
<div>{{ foobar }}</div>
</template>