<div>{{my_data['2018-07-11']}} </div>
{ "may": 4, "june": 8, "april": 5 }
<div>{{my_data['2018-07-11']['may']}} </div>
Error in render: "TypeError: Cannot read property 'may' of undefined"
var app = new Vue({
el: '#app',
data: {
my_data: {},
mess: 'hello world'
},
created: async function(){
url = 'http://dlang.ru/test'
const response = await fetch(url);
this.my_data = await response.json();
}
})