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.
我正在使用 buefy 的 b 表。
我写了类似的代码<b-table :data="movies">,但我的电影总共只有三个值。
<b-table :data="movies">
但是,我想将编辑和删除按钮添加到单元格中,包括表格中电影的信息(3)。
我单方面加了b-table-column,但是表格线被截断了。
b-table-column
我该如何解决这个问题?
尝试添加一个动作槽
<b-table :data="movies"> <template slot="actions" slot-scope="row"> <b-button @click="edit(row)"> Edit </b-button> <b-button @click="delete(row)"> Delete </b-button> </template> <b-table />