接收对象

This commit is contained in:
wanglei
2021-12-06 15:20:01 +08:00
parent ac43952307
commit d9685fbec6

View File

@@ -54,8 +54,8 @@
computed: {
tabs() {
return [
{name: this.list?.read?.length + "人已读"},
{name: this.list?.unRead?.length + "人未读"},
{name: (this.list?.read?.length || 0) + "人已读"},
{name: (this.list?.unRead?.length || 0) + "人未读"},
];
}
},