0👍
I found it by scoped template… Works like this…
<div id="app">
<el-table :data="this.todos">
<el-table-column prop="text">
<template scope="scope">
<span v-html="scope.row.text"/>
</template>
</el-table-column>
</el-table>
</div>
Source:stackexchange.com