for example in this route, how would I get :placeSlug ?
path: '/place/:placeSlug',
https://github.com/kriasoft/universal-router/blob/master/docs/api.md#url-parameters
const route = {
path: '/path/:any', // example url: '/path/hello?the=query'
action({ path, params, query }) {
console.log(path); // => '/path/hello'
console.log(params); // => { any: 'hello' }
console.log(query); // => { the: 'query' }
}
}
Most helpful comment
https://github.com/kriasoft/universal-router/blob/master/docs/api.md#url-parameters