fix: 移动端新建会话关闭侧边栏 (#813)
This commit is contained in:
parent
5fca2e9fa3
commit
73e12b1fdd
|
@ -18,6 +18,8 @@ const collapsed = computed(() => appStore.siderCollapsed)
|
||||||
|
|
||||||
function handleAdd() {
|
function handleAdd() {
|
||||||
chatStore.addHistory({ title: 'New Chat', uuid: Date.now(), isEdit: false })
|
chatStore.addHistory({ title: 'New Chat', uuid: Date.now(), isEdit: false })
|
||||||
|
if (isMobile.value)
|
||||||
|
appStore.setSiderCollapsed(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleUpdateCollapsed() {
|
function handleUpdateCollapsed() {
|
||||||
|
|
Loading…
Reference in New Issue