0👍
Maybe you need to do programmatic binding
export default {
data() {
return {
therapistData: [],
}
},
watch: {
therapistData: {
// call it upon creation too
immediate: true,
handler(therapistData) {
this.$bind('practiseName', therapistData.practiseName)
},
},
},
}
- [Vuejs]-How can I pass vuex getter to module which isn't vuejs component, but keep it reactive?
- [Vuejs]-Use slice on javascript object to loop for all elements except first two?
Source:stackexchange.com