UNPKG

@relaxed/vue-directives

Version:

vue 兼容2 3 工具库 函数库

10 lines (9 loc) 258 B
import { isVue3 } from '../../compatible/isVue3' import { formatUtc } from './src/formatUtc' export default function (app: any) { if (isVue3(app)) { app.config.globalProperties.$format = formatUtc } else { app.prototype.$format = formatUtc } }