UNPKG

@ozo/react-rock

Version:

React 移动端开发脚手架,基于CRA3,通用、开箱即用。

35 lines (31 loc) 641 B
// src/routerConfig.js import { Entrance, List, Doc, About, IframeView } from '@/pages'; // 描述路由的协议格式 const routerConfig = [ { path: '/home', title: '首页', component: Entrance, }, { path: '/list', title: '组件库', component: List, }, { path: '/doc', title: '文档', component: Doc, }, { path: '/about', title: '关于', component: About, }, { path: '/view/iframe/:title', title: '外链网页', component: IframeView, }, ]; export default routerConfig;