保存进度!

This commit is contained in:
2025-10-14 16:04:42 +08:00
parent 364753a64d
commit ca17efb5fa
2 changed files with 22 additions and 3 deletions

View File

@@ -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" );