我正在使用“步骤向导”开发vuejs前端,每个步骤的显示取决于每个步骤中保存的值。
意思是在每个下一个/后退按钮上,我正在做一个数据库发布。
一个解决方案可能是使用已挂载并调用axios get 填充我的表单变量,这肯定会解决我的问题。 但是再次需要更改并做很多
this.variable1 = response.data.variable1
this.variable2 = response.data.variable2
this.variable3 = response.data.variable3
this.variable4 = response.data.variable4
因此想知道是否可以更改VueJS道具:['var'],在服务器上,因为我们已经使用了道具对象(用户对象)。
示例VueJS
Vue.component('blog-post', {
props: ['user'],
template: '<h3>{{ user }}
<a href="#" @click="saveUser">Save</a>
</h3>',
methods: {
saveUser() {
axios call here
and must change the user object
}
}
});