perf: 移动端删除 chat 时,侧边栏应该收起

This commit is contained in:
ChenZhaoYu 2023-03-23 16:56:59 +08:00
parent 73e12b1fdd
commit 9081b22ce9
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,8 @@ function handleEdit({ uuid }: Chat.History, isEdit: boolean, event?: MouseEvent)
function handleDelete(index: number, event?: MouseEvent | TouchEvent) {
event?.stopPropagation()
chatStore.deleteHistory(index)
if (isMobile.value)
appStore.setSiderCollapsed(true)
}
function handleEnter({ uuid }: Chat.History, isEdit: boolean, event: KeyboardEvent) {