Orlandster / vue-page-transition

A lightweight Vue.js plugin for page / route transitions.

Home Page:https://orlandster.github.io/vue-page-transition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TypeScript support

aeyno opened this issue · comments

When I try to import vue-page-transition in TypeScript I'm getting this error : Could not find a declaration file for module 'vue-page-transition'. '/project/node_modules/vue-page-transition/dist/vue-page-transition.common.js' implicitly has an 'any' type

@Any0ne22

in your project, go to src and create a file called shims-page-transition.ts

in this file declare this :

declare module 'vue-page-transition'

It will fix your error in wait of a real typescript support.

@Any0ne22

in your project, go to src and create a file called shims-page-transition.ts

in this file declare this :

declare module 'vue-page-transition'

It will fix your error in wait of a real typescript support.

It works on my side. Thanks a lot 💯