VUEJS 2 将 2 个道具排成一行

VUEJS 2 Putting 2 props in one line

VUEJS如何一行输入2个道具? 我正在使用 vuejs 2 和元素 UI.

<el-table-column prop="`(creator_name + creator_username)`" label="Founder"></el-table-column>

输出应该是

测试(09123567)

在 Vue 中,您可以将变量作为 props 以冒号作为前缀传递

你的情况:

<el-table-column :prop="`${creator_name} ${creator_username})`" label="Founder"></el-table-column>

在 Vue 中,你必须在 属性 之前放置 : 以动态为其赋值。在你的情况下应该是

<el-table-column :prop="creator_name + creator_username" label="Founder"></el-table-column>