- You did it!
-
- Visit vuejs.org to read the
- documentation
-
+
+
+
diff --git a/src/main.js b/src/main.js
index c8e37b0..f13a601 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,9 +1,12 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
+import ElementPlus from 'element-plus'
+import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(router)
+app.use(ElementPlus)
app.mount('#app')