index.js 223 字节
Newer Older
B
BingBlog 已提交
1 2
import {router} from 'san-router';

B
BingBlog 已提交
3
import Scalar from './Scalars';
B
BingBlog 已提交
4

B
BingBlog 已提交
5
router.add({
J
Jeff Wang 已提交
6 7 8
  target: '#content',
  rule: '/',
  Component: Scalar,
B
BingBlog 已提交
9 10
});

B
BingBlog 已提交
11
router.add({
J
Jeff Wang 已提交
12 13 14
  target: '#content',
  rule: '/scalars',
  Component: Scalar,
B
BingBlog 已提交
15
});