2.6.10
https://github.com/aoi-umi/demo/commit/b738088f5d934b9c8e53a1f4a3e4a761966af7b0#diff-95d77e7cf3ad25bef47127a93ba4738b
tsx下使用v-html
<p v-html={params.row.content}></p>;
无法显示,报以下错误
Failed to resolve directive: html
正确显示html内容
Failed to resolve directive: html
<p v-html="params.row.content"></p>
<p v-html="params.row.content"></p>
用tsx的,不是字符串模板
Most helpful comment
https://github.com/vuejs/jsx#directives
TSX 和模板语法是不一样的