elementui-tooltip

tip多行换行

<el-table-column
   prop="totalScore"
   align="center"
 >
    <template slot="header">
	     本次签到累计获得积分数
	    <el-tooltip effect="light" placement="top">
	      <div slot="content">本次签到累计获得的积分数,如本次连<br/>续签到天数为3,则累计获得积分数为<br/>3天签到获得的积分数之和</div>
	      <i class="el-icon-question icon-style"></i>
	   </el-tooltip>
 	</template>
 </el-table-column>

正常的一行

  <el-table-column
     prop="continueDays"
     align="center"
   >
   <template slot="header">
     连续签到天数
      <el-tooltip effect="light" content="本此签到时间点连续签到的天数" placement="top">
         <i class="el-icon-question icon-style"></i>
     </el-tooltip>
   </template>
   </el-table-column>
发布了121 篇原创文章 · 获赞 3 · 访问量 4162

猜你喜欢

转载自blog.csdn.net/Q10CAU/article/details/105051156