perf: update

This commit is contained in:
xiaoxian521
2022-11-12 09:55:20 +08:00
parent df71c7f75c
commit 4f5f18f61c
17 changed files with 368 additions and 377 deletions

View File

@@ -2,7 +2,7 @@
import XEUtils from "xe-utils";
import Config from "./config.vue";
import { useI18n } from "vue-i18n";
import { cloneDeep } from "lodash-unified";
import { clone } from "@pureadmin/utils";
import { reactive, ref, unref, nextTick } from "vue";
import { useCopyToClipboard } from "@pureadmin/utils";
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
@@ -92,7 +92,7 @@ const dictData = reactive({
] as VxeFormPropTypes.Items
});
const originData = cloneDeep(dictData.tableData);
const originData = clone(dictData.tableData, true);
const xTree = ref<TablePublicMethods>();
const xForm = ref<FormMethods>();