日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學(xué)無先后,達(dá)者為師

網(wǎng)站首頁(yè) 編程語(yǔ)言 正文

ivew 表格中列中使用tooltip文字提示,并且文字過長(zhǎng)顯示...

作者:時(shí)光回溯 更新時(shí)間: 2022-03-01 編程語(yǔ)言
 columns1: [
              {
                   title: 'Name',
                   key: 'name'
               },
               {
                   title: 'Age',
                   key: 'age'
               },
               {
                   title: 'Address',
                   key: 'address',
                   render: (h,params) =>{
                   let text = params.address;
						return h('div',[
							h('tooltip',{
								props:{placement:'top'}
							},[
								h('span',{
									display:'inline-block',
									width:'80px',
									overflow:'hidden',
									textOverflow:'ellipsis',
									whiteSpace:'nowrap'
								},text),
								h('span',{
									slot:'content',
									style:{whiteSpace:'normal',wordBreak:'break-all'}
								},text)
							])
						])
				  }
               }
           ]

原文鏈接:https://blog.csdn.net/qq_43729779/article/details/114582926

欄目分類
最近更新