<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="https://unpkg.com/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-resource@1.5.1"></script>
</head>
<body>
<div id="app">
<!-- надо получить доступ к myvalue из computed -->
<p>{{ myvalue }}</p>
<p>{{ mess }}</p>
<!-- выводим то что есть в mydates и пытаемся обратиться к значению месяца -->
<p>{{my_dates['2018-07-10']['april']}}</p>
<p>{{my_dates['2018-07-10']['may']}}</p>
</div>
</body>
<script>
var app = new Vue({
el: '#app',
data: {
my_dates: {},
mess: 'hello world'
},
computed: {
// если закомментить то что ниже то заработает
myvalue: function () {
return Number(this.my_dates['2018-07-10']['april']) + Number(this.my_dates['2018-07-10']['may'])
}
},
methods:
{
getTableData: function()
{
// GET /someUrl
this.$http.get('http://dlang.ru/test').then(response => {
// get body data
this.my_dates = response.body;
}, response => {
// error callback
});
}
},
created: function(){
this.getTableData()
}
})
</script>
</html>