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
I also tried to load translations differently (probably sync not async):
import php_de from '../../resources/lang/php_de.json';
if(document.getElementById('v-login-container')) {
createApp(Login)
.provide('$t', trans)
.use(i18nVue, {
lang: 'de',
resolve: lang => php_de,
})
.mount('#v-login-container')
}
But this nothing changes, the translations are loaded async in the container.
I also see a minimal flickering while opening the Package (changing from translation keys to text).
Can you help me what I did wrong?
The text was updated successfully, but these errors were encountered:
Hello,
I'm using laravel & vite & your plugin.
My app.js looks like this:
One Component looks like this:
In this case I get the Alert without translations. If I put the
Swal.fire
within asetTimeout
method` it works:I also tried to load translations differently (probably sync not async):
But this nothing changes, the translations are loaded async in the container.
I also see a minimal flickering while opening the Package (changing from translation keys to text).
Can you help me what I did wrong?
The text was updated successfully, but these errors were encountered: