Bug 33169: Build breadcrumbs and left-hand side menu from routes definition
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / vue / i18n / index.js
1 export const $__ = (key) => {
2     return window["__"](key);
3 };
4
5 export default {
6     install: (app, options) => {
7         app.config.globalProperties.$__ = $__
8     },
9 };