import axios from 'axios';
export default {
name: 'app',
data() {
return {
schema: {}
}
},
created() {
axios.get('http://localhost:3000/schema')
.then(response => {
this.schema = response.data;
})
.catch(error => {
console.log('Network error', error);
})
}
}