router.on(path, config)
添加一条顶级的路由配置。在内部实现时,router.map() 对于接收到的路由映射对象中每个键值对都调用 router.on() 。
router.map()
router.on()
path: String
config: Object
router.on('/user/:userId', { component: { template: '<div>{{$route.params.userId}}</div>' } })