-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Doesn't work with Nuxt 3 SSR #102
Comments
I have the same issue with quasar. |
use seems to doing the work at the moment |
Just Wrap it like so: |
@akereachu This works for the Disqus component, but with the DisqusCount it will complain about 'shortname' missing:
So it needs the shortname when the component loads Edit: Using the component like this:
Combined with just a local import
Using
|
Probably because you use
window
in script setup outside theonMounted
hook.const currentRoute = ref(window.location.pathname)
Why not simply use
const route = useRoute()
androute.fullpath
instead of referencing the window ?The text was updated successfully, but these errors were encountered: