created() {
axios
.get('http://localhost:8080/json/cars.json')
.then(response => (this.info = response.data));
}
axios.post('http://localhost:8080/json/cars.json', {
id: '3',
name: 'Flintstone'
})