feat: 登录页面框架

This commit is contained in:
landaiqing
2024-04-14 00:45:29 +08:00
parent 1baa47d40e
commit b4a9ad82b9
4 changed files with 671 additions and 6 deletions

View File

@@ -1,13 +1,13 @@
import type { RouteObject } from 'react-router-dom'
import About from '@/views/about/About'
import Home from '@/views/home/Home'
// import Home from '@/views/home/Home'
import NoFound from '@/views/404/404'
import Login from '@/views/Login/index'
const routes: RouteObject[] = [
{
path: '/',
Component: Home,
Component: Login,
},
{
path: '/about',