1import { translate } from '../ts/translations' 2 3const install = function (app: any, options?: any) { 4 app.config.globalProperties.$translate = (str: string, args?: string[]) => translate(str, args, options?.translations) 5} 6 7export { 8 install 9} 10 11