管理系统PC前端
dm-manage-web/src/global/func.js

13 lines
385 B

2 years ago
import Vue from "vue";
import { parseTime, resetForm, handleTree } from "@/utils/ruoyi";
import { deepClone } from "@/utils/index";
import { download } from "@/utils/request";
// 全局方法挂载
Vue.prototype.parseTime = parseTime;
Vue.prototype.resetForm = resetForm;
Vue.prototype.download = download;
Vue.prototype.handleTree = handleTree;
Vue.prototype.deepClone = deepClone;