refactor
This commit is contained in:
parent
7f2402416b
commit
bff5fb1677
|
@ -275,18 +275,10 @@ function onVisibilitychange() {
|
|||
|
||||
onMounted(() => {
|
||||
fetch();
|
||||
if (group != null) {
|
||||
definePageMetadata(computed(() => ({
|
||||
title: group.name,
|
||||
title: group != null ? group.name : user?.name,
|
||||
icon: 'ph-chats-teardrop-bold ph-lg',
|
||||
})));
|
||||
}
|
||||
else {
|
||||
definePageMetadata(computed(() => ({
|
||||
title: user.name,
|
||||
icon: 'ph-chats-teardrop-bold ph-lg',
|
||||
})));
|
||||
}
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
|
|
Loading…
Reference in New Issue