Replies: 2 comments 1 reply
-
I have moved this discussion to the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Please can you help with a document on how you setup buefy-next and Nuxt3. I can't seem to set it up. I had different issues popping out. I want to see how you configured your nuxt.config for buefy-next. Thanks |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm using the current version of buefy-next with nuxt3 (3.8), so far working pretty good. :)
Is there a way to use i18n with local scope inside the modal ?
I can provide the t object as prop, but then I only have the scope of the parent, not the local scope of the modal.
If I add
useI18n({useScope: 'local'})
in the async setup routine (using options api, not composition api) I get the error that the modal isn't wrapped in a suspense boundary:but the modal is being called programmatically:
Inside the modal:
What acutally is working is the integration of the parent object, but this doesn't give me a local scope, only the one of the parent and it doesn't solve the problem with async setup, has to be "normal":
How can I embed i18n inside the setup routine of the modal ?
The problem seems to be that the modal can't handle the async setup function when called programmatically. :)
This also makes fetching graphql queries inside the modal (async setup) impossible. When will this be fixed ?
Beta Was this translation helpful? Give feedback.
All reactions