赞
踩
例子:
<p class="index__Feature-list-itemlist-title newline"> {{item.name| ellipsis}} </p>
使用过滤器 filters
filters: {
ellipsis (value) {
if
(!value)
return
''
if
(value.length > 32) {
return
value.slice(0,32) +
'...'
}
return
value
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。