update 依赖整体升级

This commit is contained in:
疯狂的狮子Li 2026-06-29 13:36:54 +08:00
parent 71e00e560c
commit 33fb49d683
3 changed files with 1005 additions and 842 deletions

View File

@ -25,48 +25,49 @@
"@highlightjs/vue-plugin": "2.1.2",
"@iconify/vue": "^5.0.1",
"@vueuse/core": "14.3.0",
"@wangeditor-next/editor": "5.7.10",
"@wangeditor-next/editor": "5.7.13",
"@wangeditor-next/editor-for-vue": "5.1.14",
"animate.css": "4.1.1",
"await-to-js": "3.0.0",
"axios": "1.17.0",
"axios": "1.18.1",
"crypto-js": "4.2.0",
"echarts": "6.1.0",
"element-plus": "2.14.1",
"element-plus": "2.14.2",
"highlight.js": "11.11.1",
"image-conversion": "2.1.1",
"jsencrypt": "3.5.4",
"nprogress": "0.2.0",
"pinia": "3.0.4",
"vue": "3.5.35",
"vue": "3.5.39",
"vue-cropper": "1.1.4",
"vue-i18n": "11.4.5",
"vue-i18n": "11.4.6",
"vue-json-pretty": "2.6.0",
"vue-router": "5.1.0",
"vue-types": "7.0.0",
"vxe-table": "4.19.10"
"vxe-table": "4.19.21"
},
"devDependencies": {
"@types/crypto-js": "4.2.2",
"@types/node": "^25.9.2",
"@types/node": "^26.0.1",
"@types/nprogress": "0.2.3",
"@unocss/preset-attributify": "66.7.0",
"@unocss/preset-wind3": "66.7.0",
"@unocss/preset-attributify": "66.7.3",
"@unocss/preset-wind3": "66.7.3",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/compiler-sfc": "3.5.35",
"autoprefixer": "10.5.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"sass": "1.100.0",
"@vue/compiler-sfc": "3.5.39",
"autoprefixer": "10.5.2",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"oxlint-tsgolint": "^0.23.0",
"sass": "1.101.0",
"typescript": "^6.0.3",
"unocss": "66.7.0",
"unocss": "66.7.3",
"unplugin-auto-import": "21.0.0",
"unplugin-vue-components": "32.1.0",
"unplugin-vue-setup-extend-plus": "1.0.1",
"vite": "^8.0.16",
"vite": "^8.1.0",
"vite-plugin-svg-icons-ng": "^1.9.1",
"vitest": "4.1.8",
"vue-tsc": "^3.3.4"
"vitest": "4.1.9",
"vue-tsc": "^3.3.5"
},
"browserslist": [
"Chrome >= 87",

1804
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
import HighLight from '@highlightjs/vue-plugin';
import { ElDialog } from 'element-plus';
import { createApp } from 'vue';
import VXETable from 'vxe-table';
import { install as VxeTablePlugin, VxeUI } from 'vxe-table';
import 'virtual:uno.css';
import 'element-plus/theme-chalk/dark/css-vars.css';
import '@/assets/styles/index.scss';
@ -18,7 +18,7 @@ import './permission';
import router from './router';
import store from './store';
VXETable.setConfig({
VxeUI.setConfig({
zIndex: 999999
});
@ -31,7 +31,7 @@ app.use(ElementIcons);
app.use(store);
app.use(router);
app.use(i18n);
app.use(VXETable);
app.use(VxeTablePlugin);
app.use(plugins);
directive(app);