1.0.2 • Published 2 years ago
@native-router/react v1.0.2
Native Router React
A route close to the native experience for react.
English | 简体中文
Features
- Asynchronous navigation
 - Cancelable
 - Page data concurrent fetch
 - Link prefetch and preview
 - Most unused features can be tree-shaking
 - SSR support
 
Install
npm i @native-router/reactUsage
import {View, HistoryRouter as Router} from '@native-router/react';
import Loading from '@/components/Loading';
import RouterError from '@/components/RouterError';
import * as userService from '@/services/user';
export default function App() {
  return (
    <Router
      routes={{
        component: () => import('./Layout'),
        children: [
          {
            path: '/',
            component: () => import('./Home')
          },
          {
            path: '/users',
            component: () => import('./UserList'),
            data: userService.fetchList
          },
          {
            path: '/users/:id',
            component: () => import('./UserProfile'),
            data: ({id}) => userService.fetchById(+id)
          },
          {
            path: '/help',
            component: () => import('./Help')
          },
          {
            path: '/about',
            component: () => import('./About')
          }
        ]
      }}
      baseUrl="/demos"
      errorHandler={(e) => <RouterError error={e} />}
    >
      <View />
      <Loading />
    </Router>
  );
}See demos for a complete example.