0👍
You have a type when you are setting this.columns
.
Update this.colums = response.data;
in:
methods: {
getData(){
axios.get('/api/customerRequest').then(response => {
this.columns = response.data;
});
}
Source:stackexchange.com
0👍
You have a type when you are setting this.columns
.
Update this.colums = response.data;
in:
methods: {
getData(){
axios.get('/api/customerRequest').then(response => {
this.columns = response.data;
});
}