update clientStore

This commit is contained in:
landaiqing
2024-09-08 15:30:19 +08:00
parent 834174c7cb
commit 52a7981beb
6 changed files with 18 additions and 43 deletions

View File

@@ -4,7 +4,7 @@ import {ref} from "vue";
export const useClientStore = defineStore(
'clientId',
() => {
const clientId = ref<string>();
const clientId = ref<string>('');
function setClientId(id: string) {
clientId.value = id;