Unfortunately, I am faced with the challenge of working with an object that contains labels with spaces.
To iterate through the object, I have been using the following code:
v-for="index in $data['wins Lane 1'].player2.pts"
The issue is that "Lane 1" should be a variable called "item.lane" that I am attempting to pass in, but cannot determine the correct syntax. The following does not work:
v-for="index in $data['wins ' + item.lane].player2.pts"
Please assist me!