使用该vue-router
包,很容易匹配动态段:
router.map({
'/user/:username': {
component: {
template: '<p>username is {{$route.params.username}}</p>'
}
}
})
但是,我不知道如何使用组件方法的值,例如
router.map({
'/user/:username': {
component: {
ready: function() {
// How to access the param here?
alert($route.params.username);
}
}
}
})
如何在组件方法中访问匹配的段?