0👍
You are using get
instead of post
Try this –
fetchData(){
axios
.post('api/users')
.then(res => (this.users= res.data))
.catch(err => console.log(err));
Source:stackexchange.com
0👍
You are using get
instead of post
Try this –
fetchData(){
axios
.post('api/users')
.then(res => (this.users= res.data))
.catch(err => console.log(err));