feat: home page optimize

This commit is contained in:
2026-02-02 21:03:52 +08:00
parent e6fbcff21a
commit e9b38b48e9
6 changed files with 81 additions and 12 deletions

View File

@@ -104,6 +104,12 @@ const router = createRouter({
4. 中文命名:兼容性差,且不利于团队协作和项目维护。
:::
## 路由跳转
Hucky 封装了 `utils/navigator.ts` 模块,提供了 `navigateTo` 函数,用于在 Vue 组件中进行路由跳转。
如果您以 `/` 开头,将会跳转到前端路由,如果您以 `http` 开头,将会跳转到外部链接。通过设定 `replace` 参数为 `true`,可以在跳转外部链接时,替换当前页面而不是打开新标签页。
## 特殊规则
:::danger 危险