vuejs router with params code example
Example 1: url params vue
const routes=[
.
.
{path : '/page/:id?', name='page', component: Page},
.
.
name:'Page',
mounted(){
this.url_data=this.$route.params.id;
},
data(){
return{
url_data: null
};
}
<h2> {{url_data}}</h2>
Example 2: get params from route vuejs
const User = {
template: '<div>User {{ $route.params.id }}</div>'
}
Example 3: vuejs router params
<router-link :to="{ name: 'movie', params: { id: item.id } }">{{ item.title }}</router-link>
Example 4: vue router url string
const resolved = this.$router.resolve({
name: 'SomeRouteName',
params: { id: item.id }
})
resolved.href