finished refactor chat page UI

This commit is contained in:
RockYang
2024-05-17 19:25:38 +08:00
parent d45f9fbad6
commit cac3194d5b
20 changed files with 471 additions and 344 deletions

View File

@@ -0,0 +1,13 @@
import {defineStore} from 'pinia';
export const useSharedStore = defineStore('shared', {
state: () => ({
showLoginDialog: false
}),
getters: {},
actions: {
setShowLoginDialog(value) {
this.showLoginDialog = value;
}
}
});