Skip to content
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

Closed
mehcode opened this issue May 8, 2020 · 6 comments

Comments

@mehcode
Copy link

mehcode commented May 8, 2020

What problem does this feature solve?

As it stands now, attempting to use RouterLink or RouterView in TSX fails with:

TS2604: JSX element type 'RouterLink' does not have any construct or call signatures.

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.

@posva posva closed this as completed in 1d3dce3 May 8, 2020
@posva
Copy link
Member

posva commented May 8, 2020

Is there something blocking the full type being exported?

Not anymore!

@livevsonline
Copy link

@posva Do not seem to be fixed for me?

I just installed Vue 3 and am testing out type hinting with vue-tsc package, and I am now getting this error? Its a totally fresh project with Vue 3.2

@ad-on-is
Copy link

ad-on-is commented Jun 7, 2022

@posva Do not seem to be fixed for me?

I just installed Vue 3 and am testing out type hinting with vue-tsc package, and I am now getting this error? Its a totally fresh project with Vue 3.2

Same here, did you find any solution?

@jakobluthman
Copy link

@posva Do not seem to be fixed for me?
I just installed Vue 3 and am testing out type hinting with vue-tsc package, and I am now getting this error? Its a totally fresh project with Vue 3.2

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.

//
import { RouterView, RouterLink } from 'vue-router'

//
components: {
RouterView,
RouterLink
}

Do note that this is not a permanent fix, just a workaround.

@livevsonline
Copy link

livevsonline commented Jun 7, 2022

That works and looks like this now:

<script setup lang="ts">
import { RouterView, RouterLink } from "vue-router";
{
  RouterView;
  RouterLink;
}
</script>

@tony19
Copy link

tony19 commented Jun 7, 2022

FWIW, I cannot reproduce this issue in a newly scaffolded project:

  1. Scaffold Vue 3 + Vue Router + TypeScript + JSX, and install deps:
npm init vue vue3-router-ts-1  # select TypeScript, JSX, and Router options at prompt
cd vue3-router-ts-1
pnpm i
  1. Rename src/App.vue to src/App.tsx, and replace its contents with the equivalent JSX:
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
  1. Rename the import in src/main.ts:
-import App from './App.vue'
+import App from './App.js'
  1. Run the type checking script:
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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants