We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reproduction: https://codesandbox.io/p/github/finlayacourt/unplugin-vue-router-issue/master
Consider,
src/pages/ ├── parent/ │ └── child.vue └── parent.vue
with custom path in parent.vue
path
parent.vue
<route lang="json"> { "path": "/" } </route>
The generated type for child.vue is
child.vue
export interface RouteNamedMap { '/parent/child': RouteRecordInfo< '/parent/child', '/parent/child', // !!! Record<never, never>, Record<never, never> >, }
but should be
export interface RouteNamedMap { '/parent/child': RouteRecordInfo< '/parent/child', '/child', // !!! Record<never, never>, Record<never, never> >, }
The text was updated successfully, but these errors were encountered:
f651961
Thanks! I have a few other changes pending before releasing but this should hopefully not take too long
Sorry, something went wrong.
No branches or pull requests
Reproduction: https://codesandbox.io/p/github/finlayacourt/unplugin-vue-router-issue/master
Consider,
with custom
path
inparent.vue
The generated type for
child.vue
isbut should be
The text was updated successfully, but these errors were encountered: