From d989d7bda1bd558952b4b17598570ac4271fce22 Mon Sep 17 00:00:00 2001 From: m0_60155232 Date: Tue, 12 Sep 2023 12:02:00 +0800 Subject: [PATCH] Tue Sep 12 12:02:00 CST 2023 inscode --- .inscode | 4 ++++ index.html | 2 +- package.json | 4 +++- src/App.vue | 47 +++++++++++++++++++++++++------------------- src/main.js | 23 ++++++++++++++++++++-- src/views/MD5.vue | 5 +++++ src/views/QRCode.vue | 5 +++++ 7 files changed, 66 insertions(+), 24 deletions(-) create mode 100644 src/views/MD5.vue create mode 100644 src/views/QRCode.vue diff --git a/.inscode b/.inscode index 70c7853..9fec957 100644 --- a/.inscode +++ b/.inscode @@ -1,4 +1,5 @@ run = "npm i && npm run dev" +language = "node" [deployment] build = "npm i && npm run build" @@ -8,3 +9,6 @@ run = "npm run preview" PATH = "/root/${PROJECT_DIR}/.config/npm/node_global/bin:/root/${PROJECT_DIR}/node_modules/.bin:${PATH}" XDG_CONFIG_HOME = "/root/.config" npm_config_prefix = "/root/${PROJECT_DIR}/.config/npm/node_global" + +[debugger] +program = "main.js" diff --git a/index.html b/index.html index 030a6ff..5607f4e 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Vite App + Web开发常用工具
diff --git a/package.json b/package.json index aa1c7de..054e1dd 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,10 @@ "preview": "vite preview --port 4173" }, "dependencies": { + "element-plus": "^2.3.12", "guess": "^1.0.2", - "vue": "^3.2.37" + "vue": "^3.2.37", + "vue-router": "^4.2.4" }, "devDependencies": { "@vitejs/plugin-vue": "^3.0.1", diff --git a/src/App.vue b/src/App.vue index 633a5df..309da72 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,31 +1,38 @@