vue判断数组是否为空
为空:array == undefined || array.length <= 0 (顺序不能调换)不为空: array !==undefined && array.length > 0v-show="sortSecondList[index] !== undefined && sortSecondList[index].length > 0"
·
为空:array == undefined || array.length <= 0 (顺序不能调换)
不为空: array !==undefined && array.length > 0
v-show="sortSecondList[index] !== undefined && sortSecondList[index].length > 0"
更多推荐
已为社区贡献4条内容
所有评论(0)