feat: 添加工作台

This commit is contained in:
Ray.Hao
2025-10-15 21:39:33 +08:00
parent 78740b0e50
commit 703171a2d8
7 changed files with 204 additions and 25 deletions

View File

@@ -8,7 +8,7 @@ export interface TabbarItem {
const tabbarItems = ref<TabbarItem[]>([
{ name: "home", value: null, active: true, title: "首页", icon: "home" },
{ name: "work", value: null, active: false, title: "工作台", icon: "apps" },
{ name: "work", value: null, active: false, title: "工作台", icon: "laptop" },
{ name: "mine", value: null, active: false, title: "我的", icon: "user" },
]);