vue this.$router.push query传递对象方法

this.$router.push({
    path: '/home',
    query: {
        params: JSON.stringify({ name: 'lokka', age: 18 })
    }
});
let params = JSON.parse(this.$route.query.params)
this.name = params.name; 
this.age = params.age;

你可能感兴趣的:(VUE,vue)