-
{{ msg }}
-
- You’ve successfully created a project with
- Vite +
- Vue 3.
-
+
+
+
+
+
+
+
+
+
+ 登录
+ 重置
+
+
-
diff --git a/src/main.js b/src/main.js
index 90e6400b4d8ad8aba0c1caa53874eb4b81380648..7bc9bbe9c76587ab78da66aecd0d0f1433ff13a5 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,6 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
-
import './assets/main.css'
-
-createApp(App).mount('#app')
+import ElementPlus from 'element-plus';
+import 'element-plus/dist/index.css'
+createApp(App)
+ .use(ElementPlus)
+ .mount('#app');