v-i18n Directive
Last updated
Last updated
The v-i18n directive plugin connects definitions to the EJS library.
Adding the v-i18n
attribute on an element within a component indicates that the element is localizable and contains a identifier. This string resource identifier will be matched against the for the and , its value processed as , and the result inserted back into the element. The process is repeated whenever the component is updated.
The v-i18n directive can be enabled across an application by including it in the Plugin
and adding the related entry to the file.
In this example, the will expect to find the class at Plugin/Vue/Directive/i18nDirective.js
.
In this example, my_string_id
references a in a .
At runtime, the result will be rendered as:
At runtime, the result will be rendered as:
Elements which contain both a text node and a DOM element will have the DOM nodes overwritten.
This will be rendered as:
Instead, wrap the text node which needs to be translated directly:
This will be rendered as expected:
In this example, dynamic_string_id
references a in a which includes . The value of each variable can be passed to the v-i18n directive.
Alternatively, you may use the instance method.