大哥 主播 即时消息 三合一

This commit is contained in:
2026-02-04 19:56:19 +08:00
parent 85e5d1ccb7
commit 791560af2e
52 changed files with 8324 additions and 4611 deletions

22
src/router/index.js Normal file
View File

@@ -0,0 +1,22 @@
import { createRouter, createWebHashHistory } from 'vue-router'
const routes = [
{
path: '/',
name: 'home',
// Redirect will be handled by App.vue logic usually, but here we can define structure
component: () => import('@/views/YoloBrowser.vue')
},
{
path: '/workbenches',
name: 'Workbenches',
component: () => import('@/views/tk/Workbenches.vue')
}
]
const router = createRouter({
history: createWebHashHistory(),
routes
})
export default router