I am working with existed Database which every table columns are containing white space. As result as VueJS api, I got the data key with white-space as below:
data = {
Course Trained:"82",
Course trained 2:null,
Delivery Channel:"IA2DC1",
End Date:"2017-05-06",
Full Name:"9",
ID:"1",
Intervention:"IA2",
Number of sessions:"5",
Start Date:"2017-05-02",
Training Orginisation:"2",
}
My problem is when I tried to use 'v-model' => 'Course Trained', the whole page compiled an error.
How can I deal with this with-space in VueJS?
PS. I cannot remove space to change the table column name. because it linked to many relationship and 3rd party application.