[Vuejs]-Printing unesacped HTML to elements.io table with vue.js

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>

Leave a comment