refactor: 完全移除内置 vxe-table 支持

This commit is contained in:
xiaoxian521
2022-12-05 13:41:58 +08:00
parent 95940312a9
commit 3629a66535
17 changed files with 4334 additions and 2740 deletions

View File

@@ -7,7 +7,6 @@ import { getServerConfig } from "./config";
import { createApp, Directive } from "vue";
import { MotionPlugin } from "@vueuse/motion";
import { useEcharts } from "@/plugins/echarts";
import { useTable } from "@/plugins/vxe-table";
import { injectResponsiveStorage } from "@/utils/responsive";
import Table from "@pureadmin/table";
@@ -55,7 +54,6 @@ getServerConfig(app).then(async config => {
.use(ElementPlus)
.use(Table)
.use(PureDescriptions)
.use(useTable)
.use(useEcharts);
app.mount("#app");
});