fix(dashboard): 🐛 修复eslint报错

This commit is contained in:
cshaptx4869 2024-03-25 18:15:50 +08:00
parent c6421f0e43
commit bb4eb0d833
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ const greetings = computed(() => {
return "下午好," + userStore.user.nickname + "";
} else if (hours >= 18 && hours < 24) {
return "晚上好," + userStore.user.nickname + "";
} else if (hours >= 0 && hours < 6) {
} else {
return "偷偷向银河要了一把碎星,只等你闭上眼睛撒入你的梦中,晚安🌛!";
}
});