2
使用vue-router
包中使用它,它很容易match dynamic segments:如何匹配VUE路由器路線及組件功能
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);
}
}
}
})
如何訪問組件方法中匹配的段?
容易,我能猜到。無論如何,非常感謝! – frthjf