el-tooltip内需要标签来嵌套内容
这样显示不了:
<el-tooltip placement="top" content="hello">
world
</el-tooltip>
把内容嵌套一个标签即可
<el-tooltip placement="top" content="hello">
<div>world</div>
</el-tooltip>
el-tooltip内需要标签来嵌套内容
这样显示不了:
<el-tooltip placement="top" content="hello">
world
</el-tooltip>
把内容嵌套一个标签即可
<el-tooltip placement="top" content="hello">
<div>world</div>
</el-tooltip>