From 430b66bb0157a7c8aa01a3428f1b3aad65bf7e56 Mon Sep 17 00:00:00 2001 From: m0_49882786 Date: Tue, 4 Jun 2024 18:11:21 +0800 Subject: [PATCH] Auto Commit --- package.json | 4 +- src/App.vue | 126 ++++++++++++++++++++++++++++++++++++--------------- src/main.js | 5 +- 3 files changed, 96 insertions(+), 39 deletions(-) diff --git a/package.json b/package.json index ee9648b..529ae0b 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,10 @@ "preview": "vite preview --port 4173" }, "dependencies": { + "element-plus": "^2.7.4", "guess": "^1.0.2", - "vue": "^3.2.37" + "vue": "^3.2.37", + "xlsx": "^0.18.5" }, "devDependencies": { "@vitejs/plugin-vue": "^3.0.1", diff --git a/src/App.vue b/src/App.vue index 633a5df..87c867b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,47 +1,101 @@ - - - + \ No newline at end of file diff --git a/src/main.js b/src/main.js index 90e6400..857f6f5 100644 --- a/src/main.js +++ b/src/main.js @@ -2,5 +2,6 @@ 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') -- GitLab