学无先后,达者为师

网站首页 编程语言 正文

ivew 表格中列中使用tooltip文字提示,并且文字过长显示...

作者:时光回溯 更新时间: 2022-03-01 编程语言
 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

栏目分类
最近更新