1π
β
in Vue, you can passing the variable as props with colon as prefix
in your case:
<el-table-column :prop="`${creator_name} ${creator_username})`" label="Founder"></el-table-column>
1π
in Vue you have to put :
before a property to dynamically assign value to it. in your case it should be
<el-table-column :prop="creator_name + creator_username" label="Founder"></el-table-column>
Source:stackexchange.com