You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you look at the vue-router releases, they had the same issue and fixed it. I'm having issues where I can't use {{ $route }} because any library that uses `declare module '@vue/runtime-core' essentially causes all other shared namespaces to have issues.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Below is a snipped of the index.d.mts file from Vuetify.
But according to the Vue documentation, but I believe this should now be just
declare module 'vue'
. Can anyone verify this? Here is a link from the Vue docs. https://vuejs.org/guide/typescript/options-api.html#augmenting-global-propertiesIf you look at the vue-router releases, they had the same issue and fixed it. I'm having issues where I can't use
{{ $route }}
because any library that uses `declare module '@vue/runtime-core' essentially causes all other shared namespaces to have issues.Here's a link to the release notes of Vue Router talking about it.
https://github.com/vuejs/router/blob/main/packages/router/CHANGELOG.md#bug-fixes-2
Beta Was this translation helpful? Give feedback.
All reactions