保存进度!

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

@@ -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;