All Questions
Tagged with vuetifyjs3 vue-i18n
4 questions
0
votes
0
answers
35
views
How to change the values in navbar without refresh based on the 'user' which is maintained in a pinia store vue js 3?
I have a sidenavbar which has list of items say
Home
Update
Delete
Restart
I have 2 users say admin and staff.
Home page displays by default and doesn't require any login. Once the user clicks on ...
3
votes
0
answers
983
views
'SyntaxError: Need to install with `app.use` function' when using Vuetify v-locale-provider component
I'm using Nuxt 3 with Vuetify 3 to build my application, and I'm trying to use the v-locale-provider component to force RTL direction for a specific part of the component.
<v-locale-provider rtl>...
0
votes
0
answers
27
views
ReferenceError: $t is not defined in vuejs3 project [duplicate]
I have a problem with vue 3 and vue-i18n.
The translation works correctly in the template part. However, I have an error when using in the script part:
Uncaught (in promise) ReferenceError: $t is not ...
1
vote
1
answer
987
views
Vuetify 3 and vue-i18n for tag attribute
When I need localized text in tag content I do something like this
<span>{{ $t('myText') }}</span>
But I can't find a way to add localized text for tag attribute. I tried
<v-text-...