保存进度!

This commit is contained in:
2025-10-13 19:32:20 +08:00
parent 8459896ae5
commit 364753a64d
3 changed files with 43 additions and 2 deletions

View File

@@ -8,7 +8,8 @@
"name": "regulatory-management-util",
"version": "0.0.0",
"dependencies": {
"vue": "^3.5.22"
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.4.0",
@@ -1564,6 +1565,12 @@
"@vue/shared": "3.5.22"
}
},
"node_modules/@vue/devtools-api": {
"version": "6.6.4",
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
"integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
"license": "MIT"
},
"node_modules/@vue/language-core": {
"version": "3.1.1",
"resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-3.1.1.tgz",
@@ -3434,6 +3441,21 @@
"url": "https://opencollective.com/eslint"
}
},
"node_modules/vue-router": {
"version": "4.5.1",
"resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.1.tgz",
"integrity": "sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==",
"license": "MIT",
"dependencies": {
"@vue/devtools-api": "^6.6.4"
},
"funding": {
"url": "https://github.com/sponsors/posva"
},
"peerDependencies": {
"vue": "^3.2.0"
}
},
"node_modules/vue-tsc": {
"version": "3.1.1",
"resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-3.1.1.tgz",

View File

@@ -9,7 +9,8 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.22"
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.4.0",

View File

@@ -0,0 +1,18 @@
/**
* @Author: Kane Wang <wangkane@qq.com>
* @Date: 2025-10-13 15:31:41
* @LastEditors: Kane Wang
* @LastModified: 2025-10-13 15:37:20
* @FilePath: src/router/index.ts
* @Description:
*
* Copyright (c) 2025 by Kane All rights reserved
*/
import { createRouter, createWebHashHistory } from "vue-router";
const router = createRouter({
history: createWebHashHistory(),
routes:[],
});
export default router;