溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue如何實(shí)現(xiàn)超長(zhǎng)文本截取,懸浮框提示

發(fā)布時(shí)間:2020-07-30 09:39:53 來(lái)源:億速云 閱讀:842 作者:小豬 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要為大家展示了vue如何實(shí)現(xiàn)超長(zhǎng)文本截取,懸浮框提示,內(nèi)容簡(jiǎn)而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來(lái)看看吧。

vue 超長(zhǎng)文本截取,懸浮框提示

樣式:

<style>
 .overflow-table .ivu-table-cell{
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 }
</style>

table:

<Table border :columns="comDataColunms" :data="comDataList" :loading="tableDataLoading" class="overflow-table table-context"></Table>

主要代碼:

{
 title: '統(tǒng)一信用代碼',
 key: 'ucCode',
 render: (h, params) => {
 return h('span', {
  domProps: {
  title: params.row.ucCode
  }
 }, params.row.ucCode)
 }
}

補(bǔ)充知識(shí):前端使用ElementUI +Vue table表頭添加tooltip懸浮提示框

廢話不多說(shuō),看代碼~

<el-table
empty-text=“正在加載中…”
:data=“contentList”
style=“width: 100%”
@sort-change=“sort”
class=“pro-table-item”
tooltip-effect=“dark”
 <template v-for="(item,index) in titleList">
    <el-table-column
     v-if="index == '0'"
     :prop="index.toString()"
     :label="item"
     sortable="custom"
     min-width="120"
     :render-header="renderHeader"
    > 
    </el-table-column>
  <el-table-column
   v-else
   :prop="index.toString()"
     :label="item"
     min-width="120"
     :render-header="renderHeader"
     show-overflow-tooltip
renderHeader(h, { column }) {
if(column.label.length>13) {
return (

{column.label}

)
} else {
return (
{column.label}
)
}
},

并不想讓所有的表頭都彈出tooltip,只想讓超出長(zhǎng)度并且

overflow: hidden;

white-space: nowrap;

text-overflow: ellipsis;

以上就是關(guān)于vue如何實(shí)現(xiàn)超長(zhǎng)文本截取,懸浮框提示的內(nèi)容,如果你們有學(xué)習(xí)到知識(shí)或者技能,可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI