export function limitNumber(str, nwords) {
return str.length > nwords ? str.slice(0, nwords) + '...' : str
}
str:字符串
nwords:字数
export function limitNumber(str, nwords) {
return str.length > nwords ? str.slice(0, nwords) + '...' : str
}
str:字符串
nwords:字数