import { getMsg } from '~/i18n/index.ts' export default class I18nText { text: string constructor (path: string, args?) { this.text = getMsg(path, args) } toString () { return this.text } }