From 5cb40abe18ff0d048b91460ed546bfa19c82e8a9 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期一, 04 三月 2024 10:05:47 +0800 Subject: [PATCH] update 优化 密码校验策略增加非法字符限制 --- src/main.ts | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/main.ts b/src/main.ts index 439d82c..29a5ee5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -25,12 +25,24 @@ // 鍥介檯鍖� import i18n from '@/lang/index'; +// vxeTable +import VXETable from 'vxe-table'; +import 'vxe-table/lib/style.css'; +VXETable.config({ + zIndex: 999999 +}); + +// 淇敼 el-dialog 榛樿鐐瑰嚮閬収涓轰笉鍏抽棴 +import { ElDialog } from 'element-plus'; +ElDialog.props.closeOnClickModal.default = false; + const app = createApp(App); app.use(ElementIcons); app.use(router); app.use(store); app.use(i18n); +app.use(VXETable); app.use(plugins); // 鑷畾涔夋寚浠� directive(app); -- Gitblit v1.9.3