index.js 148 字节
Newer Older
B
BingBlog 已提交
1 2 3 4 5 6
import {router} from 'san-router';

import HomePage from './Home';

router.add({
    target: '#content',
B
BingBlog 已提交
7
    rule: '/',
B
BingBlog 已提交
8 9
    Component: HomePage
});