Example 1: query params vuejs
 http:   parameters = this.$route.query  console.log(parameters)   name = this.$route.query.name  console.log(name)
 Example 2: 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 3: get params from route vuejs
 const User = {   template: '<div>User {{ $route.params.id }}</div>' }
 Example 4: vue router url string
 const resolved = this.$router.resolve({   name: 'SomeRouteName',   params: { id: item.id } }) resolved.href 
 
Comments
Post a Comment