,methods:{
loadJson:function(){
//this.jsonTest = "jjj"
this.$http.get('http://localhost:3003/news/1')
.then((response) => {
//console.log(response.data.title);
this.jsonTest = response.data.title;
//console.info(this)
})
.catch(function (error) {
console.log(error);
});
}
}