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