How to internationalize quasar tags attrs?
-
Hi,
I want to quasar tags attributes like helper in qfield change for each language.
How can i handle this?
I tested like:
<q-field style=“direction: ltr!important”
:count=“10”
helper="{{$t(help)}}"
:error=“error”
error-label=“Some error”
></q-field >
but it is not working.
I’ll appreciate it.
Thank you -
you miss colon
:helper="$t(help)"
-
Thank you very much dear @Ivan-Koprda .
It is working now.