UNPKG

@fx-form/utils

Version:

vue json schema form 使用的基础utils工具类

20 lines (16 loc) 480 B
/** * Created by Liu.Jun on 2020/4/30 11:22. */ // 使用 ajv-i18n 这里只为初始化默认可以设置语言 // 也可以自己使用官方的语言包 // https://github.com/epoberezkin/ajv-i18n/tree/master/localize import localizeZh from './localize/zh'; export default { $$currentLocalizeFn: localizeZh, getCurrentLocalize() { return this.$$currentLocalizeFn; }, useLocal(fn) { this.$$currentLocalizeFn = fn; } };