Skip to content

Instantly share code, notes, and snippets.

@djpeach
Last active October 3, 2019 20:39
Show Gist options
  • Save djpeach/b99388d0b42b7654cb49f62c1f328e11 to your computer and use it in GitHub Desktop.
Save djpeach/b99388d0b42b7654cb49f62c1f328e11 to your computer and use it in GitHub Desktop.
Add sendRequest method to Vue component
methods: {
sendRequest() {
client({
method: 'get',
url: '/'
}).then((res) => {
this.response = res.data.message
}).catch((error) => {
this.response = error
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment