feat: 初始化CSS &输入框

This commit is contained in:
2026-02-03 13:15:39 +08:00
parent 734c0129cd
commit 3d7cb5d5d4
10 changed files with 240 additions and 65 deletions

View File

@@ -7,42 +7,47 @@ import { createRouter, createWebHistory } from 'vue-router'
* 3. 路由的name默认是文件名,如果文件名与name不一致,通过defineOptions({ name: 'componentName' })来设置
*/
const router = createRouter({
history: createWebHistory('/'),
// history: createWebHistory(import.meta.env.VITE_APP_URL),
routes: [
{
path: '/',
redirect: '/home'
},
{
path: '/',
name: 'index',
component: () => import('../views/login/index.vue'),
},
{
path: '/login',
name: 'login',
component: () => import('../views/login/login.vue'),
},
{
path: '/home',
name: 'home',
component: () => import('../views/home/index.vue'),
children: [
{
path: 'test',
name: 'test',
component: () => import('../views/home/test.vue'),
meta: { topNavStyle: '2' }
}
]
},
{
path: '/:pathMatch(.*)',
name: '404',
component: () => import('../views/404.vue'),
}
]
history: createWebHistory('/'),
// history: createWebHistory(import.meta.env.VITE_APP_URL),
routes: [
{
path: '/',
redirect: '/home'
},
{
path: '/',
name: 'index',
component: () => import('../views/login/index.vue')
},
{
path: '/login',
name: 'login',
component: () => import('../views/login/login.vue')
},
{
path: '/home',
name: 'home',
component: () => import('../views/home/index.vue'),
children: [
{
path: 'test',
name: 'test',
component: () => import('../views/home/test.vue'),
meta: { topNavStyle: '2' }
},
{
path: 'mainInput',
name: 'mainInput',
component: () => import('../views/home/mainInput.vue')
}
]
},
{
path: '/:pathMatch(.*)',
name: '404',
component: () => import('../views/404.vue')
}
]
})
export default router