伙计们,我是 Vue 的新手,所以不知道如何解决这个问题让我先显示代码然后问题,我使用 Vue-Good-table 这里是链接https://xaksis.github.io/vue-good-演示/#/简单表
<vue-good-table
title="Product List"
:columns="columns"
:rows="rows"
:paginate="true"
:lineNumbers="true" />
export default {
data(){
return {
columns: [
{
label: 'productname',
field: 'product_name',
filterable: true,
},
{
label: 'productdesc',
field: 'product_desc',
// type: 'number',
html: false,
filterable: true,
},
],
rows:[],//get axios return value
};
},
methods:{
next() {
var _this=this
this.$http.get('http://localhost:3000/api/companyproducts')
.then(function (response) {
_this.rows=response.data
})
.catch(function (error) {
});
}
}
}
现在我的问题是我如何将这个axios响应值附加到好表的行中