Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有在vue-tables-2创建的用户表列表。我想在每行之前添加复选框列以选择多行,并在标题之前添加像 gmail 一样的所有行。
谁能帮我吗 ?
这很简单。你应该在你的 vuetables 列中添加一个列,就是这个。想象一下您在fileds variable.ok 中定义您的表格列?我的意思是如下所示,只需将此代码放在您的表格列中:
fields: [ { name: '__checkbox', titleClass: 'center aligned', dataClass: 'center aligned' }, //... ]
如果您想获得更多信息,请查看此链接:
https://github.com/ratiw/vuetable-2-tutorial/wiki/lesson-11