Skip to content

Instantly share code, notes, and snippets.

@bodrovis
Created April 15, 2019 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bodrovis/caa457b85dc22cd8ceca4006e1e74913 to your computer and use it in GitHub Desktop.
Save bodrovis/caa457b85dc22cd8ceca4006e1e74913 to your computer and use it in GitHub Desktop.
Vue.component('app', {
template: `
<main>
<language-changer></language-changer>
<p>{{ $t("welcome") }}</p>
<p v-t="{path:'welcome'}"></p>
<inline-translations></inline-translations>
<key-prefix></key-prefix>
<i18next path="term" tag="label" for="tos">
<a href="#" target="_blank">{{ $t("tos") }}</a>
</i18next>
<p>{{ $t("apple", {count: 100}) }}</p> // <---
</main>
`,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment