mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-17 10:08:14 +08:00
💄 修复渲染异常,调整share可用性
This commit is contained in:
@@ -140,7 +140,9 @@ const uidList = shallowRef<Array<string>>([]);
|
||||
const roleList = shallowRef<Array<TGApp.Sqlite.Character.UserRole>>([]);
|
||||
const selectedList = shallowRef<Array<TGApp.Sqlite.Character.UserRole>>([]);
|
||||
const dataVal = shallowRef<TGApp.Sqlite.Character.UserRole>();
|
||||
const enableShare = computed<boolean>(() => (showOverlay.value ? true : showSelect.value));
|
||||
const enableShare = computed<boolean>(
|
||||
() => showOverlay.value || showSelect.value || loadData.value,
|
||||
);
|
||||
|
||||
onMounted(async () => {
|
||||
await showLoading.start("正在获取角色数据");
|
||||
|
||||
Reference in New Issue
Block a user