Enable vue/return-in-computed-property and add explicit fallback returns

Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
2026-03-08 12:39:11 +08:00
parent 1bf8355092
commit c88646eba3
5 changed files with 7 additions and 2 deletions

View File

@@ -560,6 +560,7 @@ const allFiles = computed(() => {
);
return sortFiles;
}
return [];
});
/**