gpt4 book ai didi

javascript - 如何在 vue-tables-2 中动态填充 listColumns?

转载 作者:行者123 更新时间:2023-11-30 19:13:08 24 4
gpt4 key购买 nike

假设我有一组可通过 prop 获得的类别名称。

vue-tables-2 中,如何在 listColumns 选项中动态填充 category 过滤器?

listColumns: {
type: [{
id: 1,
text: 'User'
},
{
id: 2,
text: 'Admin'
}],
category: function () {
this.categories.map((cat, index) => { return { id: index, text: cat } })
}
}

这样做会返回以下错误:

[Vue warn]: Error in render: "TypeError: _this.opts.listColumns[column].filter is not a function"

最佳答案

您可以在选项中插入您的 Prop 。

options: {
filterByColumn: true,
listColumns: {
type: this.categories
}
}

关于javascript - 如何在 vue-tables-2 中动态填充 listColumns?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58271647/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com