somascope
12/27/2018 - 11:41 PM

Vue axios

  methods: {
    onSubmit() {
      let path = '/search?q=' + this.search;
      axios.get(path)
      .then(response => {
        this.products = response.data;
      })
    }
  }