Koha/koha-tmpl/intranet-tmpl/prog/js/vue/i18n/index.js
Tomas Cohen Arazi 7b1391ea9f
Bug 33169: (QA follow-up) Tidy Vue-related files
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-06-23 10:01:02 -03:00

9 lines
169 B
JavaScript

export const $__ = key => {
return window["__"](key);
};
export default {
install: (app, options) => {
app.config.globalProperties.$__ = $__;
},
};