Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 622 Bytes

Internalization.md

File metadata and controls

18 lines (11 loc) · 622 Bytes

Neutronium.SPA.Demo

Internalization

Resource.resx is used on the C# side and transformed by message.tt into a .json file that is used by vue-i18n as resource.

For example, to reference About1 key defined as below:

Just do:

<v-list-tile-title v-text="$t('Resource.About1')"></v-list-tile-title>

Back to README