vue过滤器

显示文本摘要,截取文本指定长度:

vue过滤器

 

应用:

vue过滤器

 

代码:

vue过滤器
filters: {
            truncate: function (text, length, suffix) {
                if (text != undefined && text != null && text.length > length) {
                    return text.substring(0, length) + suffix;
                } else {
                    return text;
                }
            },
        }
Source Code

 

上一篇:如何实现自动化整理桌面


下一篇:1077 Kuchiguse (20 分)