mirror of
https://github.com/retailcrm/vue-i18n-loader.git
synced 2024-11-25 14:56:04 +03:00
16 lines
167 B
Vue
16 lines
167 B
Vue
|
<template>
|
||
|
<div>{{ $t('test') }}</div>
|
||
|
</template>
|
||
|
|
||
|
<i18n locale="en_GB">
|
||
|
{
|
||
|
"test": "Test"
|
||
|
}
|
||
|
</i18n>
|
||
|
|
||
|
<i18n locale="ru_RU">
|
||
|
{
|
||
|
"test": "Тест"
|
||
|
}
|
||
|
</i18n>
|