We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I am trying to use this in a early adoption of nuxt3. The vue-wait/nuxt-plugin does not work, so I tried to create my own plugin:
vue-wait/nuxt
import { createVueWait } from 'vue-wait' export default defineNuxtPlugin((nuxtApp) => { const VueWait = createVueWait({ registerComponent: false,}) nuxtApp.vueApp.use(VueWait); return { provide: { wait: () => VueWait } } })
But unfortunately, this gives me an error:
Unhandled Promise Rejection: TypeError: $wait.is is not a function. (In '$wait.is("test")', '$wait.is' is undefined)
when I try to access it like this:
const {$auth, $wait} = useNuxtApp(); console.log($wait.is('test'))
The text was updated successfully, but these errors were encountered:
@ahoiroman have you had any luck with this?
Sorry, something went wrong.
No branches or pull requests
Hello,
I am trying to use this in a early adoption of nuxt3. The
vue-wait/nuxt
-plugin does not work, so I tried to create my own plugin:But unfortunately, this gives me an error:
when I try to access it like this:
The text was updated successfully, but these errors were encountered: