somascope
3/29/2020 - 9:36 PM

Vue API GET

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);
    })
  }
}