From 85d6205823febc2e7baa76dbc34eb9c5c92b6edb Mon Sep 17 00:00:00 2001 From: Gustavo Brian Date: Sat, 24 Jul 2021 18:05:14 +0200 Subject: [PATCH] Lib build fix $te ref (#86) --- client/src/lib.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/lib.ts b/client/src/lib.ts index 81aefd27..5062fdf8 100644 --- a/client/src/lib.ts +++ b/client/src/lib.ts @@ -48,6 +48,7 @@ const plugini18n: PluginObject = { install(Vue) { Vue.prototype.i18n = i18n Vue.prototype.$t = i18n.t.bind(i18n) + Vue.prototype.$te = i18n.te.bind(i18n) }, }