-
-
Notifications
You must be signed in to change notification settings - Fork 484
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Since Vue 3.2.3
3.1.3
(works properly with 3.2.2
3.1.2
, not with 3.2.3
3.1.3
onward), I have that typecheck issue:
That show
property is defined in a the modal
component in <script setup lang="ts">
:
defineProps({ show: Boolean })
I'm also using vite-plugin-components
which generates a components.d.ts
file with the following:
// generated by vite-plugin-components
// read more https://github.com/vuejs/vue-next/pull/3399
declare module 'vue' {
export interface GlobalComponents {
// ...
Modal: typeof import('./src/components/Modal.vue')['default']
// ...
}
}
export { }
I'm running Volar 0.26.6
.
Maybe related to your PR? vuejs/core@81e69b2
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested