UNPKG

@relaxed/vue-directives

Version:

vue 兼容2 3 工具库 函数库

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