添加开始游戏前,进行连接检测

This commit is contained in:
kron
2025-06-28 22:44:30 +08:00
parent 77691c411a
commit 21b3e38ff0
9 changed files with 41 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ import { storeToRefs } from "pinia";
const store = useStore();
const { updateConfig, updateUser, updateDevice, updateRank } = store;
// 使用storeToRefs用于UI里显示保持响应性
const { user, device, remoteConnect, rankData } = storeToRefs(store);
const { user, device, rankData } = storeToRefs(store);
const showModal = ref(false);
const isIos = ref(true);