# UI 路由 NocoBase Client 的 Router 基于 [React Router](https://v5.reactrouter.com/web/guides/quick-start),可以通过 `app.router` 来配置 ui routes,例子如下: ```tsx /** * defaultShowCode: true */ import React from 'react'; import { Link, Outlet } from 'react-router-dom'; import { Application } from '@nocobase/client'; const Home = () =>

Home

; const About = () =>

About

; const Layout = () => { return
Home, About
} const app = new Application({ router: { type: 'memory', initialEntries: ['/'] } }) app.router.add('root', { element: }) app.router.add('root.home', { path: '/', element: }) app.router.add('root.about', { path: '/about', element: }) export default app.getRootComponent(); ``` 在完整的 NocoBase 应用里,可以类似以下的的方式扩展 Route: ```tsx | pure import { Plugin } from '@nocobase/client'; class MyPlugin extends Plugin { async load() { // 添加一条路由 this.app.router.add('hello', { path: '/hello', element:
hello
, }) // 删除一条路由 this.app.router.remove('hello'); } } ``` 完整示例查看 [packages/samples/custom-page](https://github.com/nocobase/nocobase/tree/develop/packages/samples/custom-page)