NuxtN
Nuxt5mo ago
10 replies
Jonas

No intellisense for props/properties/attributes

Fresh new project, no intellisense for custom or nuxt components

/components/Tester.vue
<script setup lang="ts">
defineProps<{
    foobar: string;
}>();
</script>
<template>
    <div>{{ foobar }}</div>
</template>
Was this page helpful?