From ca17efb5fa4cf669f77c9818834331241bf630b2 Mon Sep 17 00:00:00 2001 From: Kane Wang Date: Tue, 14 Oct 2025 16:04:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E5=AD=98=E8=BF=9B=E5=BA=A6=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../regulatory-management-util/src/AppMain.vue | 17 +++++++++++++++++ code/web/regulatory-management-util/src/main.ts | 8 +++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 code/web/regulatory-management-util/src/AppMain.vue diff --git a/code/web/regulatory-management-util/src/AppMain.vue b/code/web/regulatory-management-util/src/AppMain.vue new file mode 100644 index 0000000..7726ca6 --- /dev/null +++ b/code/web/regulatory-management-util/src/AppMain.vue @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/code/web/regulatory-management-util/src/main.ts b/code/web/regulatory-management-util/src/main.ts index 25610a8..d0cee1b 100644 --- a/code/web/regulatory-management-util/src/main.ts +++ b/code/web/regulatory-management-util/src/main.ts @@ -1,15 +1,17 @@ // eslint-disable-next-line import { createApp, VueElement } from "vue"; import "./style.css"; -import App from "./App.vue"; +// import App from "./App.vue"; +import AppMain from "./AppMain.vue"; import ElementPlus from "element-plus"; import "element-plus/dist/index.css"; // eslint-disable-next-line -const app = createApp( App ); +const app = createApp( AppMain ); app.use( ElementPlus ); +app.mount( "#app" ); // eslint-disable-next-line -createApp( App ).mount( "#app" ); +// createApp( App ).mount( "#app" );