I'm using last version of vue-js and element-ui whose documentation can be found here.
Context
I want to display a table containing some information about interested and attending people for a given date and room
Issue
I do not manage to display the attending and interested for each room and for each date.
The main problem is how to loop through each room
https://jsfiddle.net/k7Lzv38b/
Data
tableData: [{
date: 'Jan 2017',
rooms: [{
name: 'Room A',
attending: 10,
interested: 5
}, {
name: 'Room B',
attending: 10,
interested: 0
}]
}, {
date: 'Feb 2017',
rooms: [{
name: 'Room A',
attending: 10,
interested: 5
}, {
name: 'Room B',
attending: 10,
interested: 0
}]
}]