UNPKG

tiptap-vuetify

Version:
14 lines (10 loc) 211 B
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 } }