Koha/koha-tmpl/intranet-tmpl/prog/js/vue/i18n/index.js
Agustin Moyano 13fbc155d2
Bug 33169: Build breadcrumbs and left-hand side menu from routes definition
Signed-off-by: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-06-23 10:00:56 -03:00

9 lines
170 B
JavaScript

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