接收对象
This commit is contained in:
@@ -54,8 +54,8 @@
|
|||||||
computed: {
|
computed: {
|
||||||
tabs() {
|
tabs() {
|
||||||
return [
|
return [
|
||||||
{name: this.list?.read?.length + "人已读"},
|
{name: (this.list?.read?.length || 0) + "人已读"},
|
||||||
{name: this.list?.unRead?.length + "人未读"},
|
{name: (this.list?.unRead?.length || 0) + "人未读"},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user