-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Consider exporting the full type of the RouterLink and RouterView component for TypeScript #226
Comments
Not anymore! |
@posva Do not seem to be fixed for me? I just installed Vue 3 and am testing out type hinting with |
Same here, did you find any solution? |
You can import RouterView and RouterLink from vue-router and define them as components in your component, which will give you correct typings and resolve the errors you are getting. // // Do note that this is not a permanent fix, just a workaround. |
That works and looks like this now:
|
FWIW, I cannot reproduce this issue in a newly scaffolded project:
npm init vue vue3-router-ts-1 # select TypeScript, JSX, and Router options at prompt
cd vue3-router-ts-1
pnpm i
import { RouterLink, RouterView } from 'vue-router'
import HelloWorld from '@/components/HelloWorld.vue'
function App() {
return <>
<header>
<img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" />
<div class="wrapper">
<HelloWorld msg="You did it!" />
<nav>
<RouterLink to="/">Home</RouterLink>
<RouterLink to="/about">About</RouterLink>
</nav>
</div>
</header>
<RouterView />
</>
}
export default App
-import App from './App.vue'
+import App from './App.js'
pnpm type-check The output shows no errors: $ pnpm type-check
> [email protected] type-check /Users/tony/src/tmp/vue3-router-ts-1
> vue-tsc --noEmit
$ I also could not reproduce the issue using the above steps without the JSX option and without any changes to the scaffolded code. What steps am I missing? |
What problem does this feature solve?
As it stands now, attempting to use
RouterLink
orRouterView
in TSX fails with:This is because the type is erased here:
https://github.com/vuejs/vue-router-next/blob/096d86498e954345c6bd4d8e82fe54c37d3f869b/src/RouterLink.ts#L140
Is there something blocking the full type being exported?
What does the proposed API look like?
Removing the
as unknown as Component
.The text was updated successfully, but these errors were encountered: