0👍
try Implicit Binding, that’s much more better
- [Vuejs]-Vue – How to import components dynamically
- [Vuejs]-How to get specific property from another object?
0👍
I think you missed a slash on after 'api/loadData'
.It could be
loadStudentData(id) {
this.form.show('api/loadData/' + id).then(({data}) => (this.studentsData = data));
}
However, you did not publish your routes here.
Source:stackexchange.com