-
-
Notifications
You must be signed in to change notification settings - Fork 432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Property 'default' does not exist on type '{}'." On Router-view and Router-link v-slot #547
Comments
Creating But I have a different error when
|
Thanks, @sapphi-red! The issue is gone. But I won't close this issue because you have another issue, or should I close it? |
I have the same issue, and adding components.d.ts seems not working for me :( |
@ndh103 I added components.d.ts in src folder and pasted
In it. Maybe you can share repo to reproduce the issue |
I have red squiggles in all my |
I will try to put it in src folder and see. if it works |
@Sibyl666 I tried with components.d.ts and it still not work |
Having a similar, possibly related issue with locally-imported components: <script setup lang="ts">
import { Menu } from '@headlessui/vue'
//...
</script>
<template>
<!-- -->
<Menu v-slot="{ open }">
<!-- -->
<Menu>
<!-- -->
</template> This is using Here is what the component in its Detailsexport declare let Menu: import("vue").DefineComponent<{
as: {
type: (ObjectConstructor | StringConstructor)[];
default: string;
};
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>[] | null | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
as: string;
} & {}>, {
as: string;
}>; Its source code is here if it's of any help. If the "error" is intended on Volar's side, what's the workaround for me to hide the error? |
Fixed in d587ab1, please wait for release or use 0.27.26 for now, thanks! @innocenzi it's fixed in #540. Please keep this issue open, I will close when I release new version. |
Is this also fixed in the upcoming version of vue-tsc? The issue happens there as well on vue-tsc --noEmit. Which version of vue-tsc is safe to get rid of this error? |
@dbethel-nib use 0.27.26 or latest 0.27.30. See #402. |
Repository to reproduce the error
https://github.com/sibyl666/issue
When v-slot is used with router-view it gives the error "Property 'default' does not exist on type '{}'."

this wasn't an issue a while ago with the same vue-router version on another repo, When I check the other repo it shows the same error so that's why I think the issue is related to the extension. Repository created with
yarn create vite issue --template vue-ts
Vue Language Features (Volar) version v0.27.27
TypeScript Vue Plugin (Volar) version v0.27.27
The text was updated successfully, but these errors were encountered: