docs(list): update Error loading module code (#12778)

This commit is contained in:
invalid w 2024-04-12 20:31:55 +08:00 committed by GitHub
parent cecfc4590d
commit 7217004dd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,7 @@ export default {
const loading = ref(false);
const onLoad = () => {
fetchSomeThing().catch(() => {
loading.value = false;
error.value = true;
});
};

View File

@ -95,6 +95,7 @@ export default {
const loading = ref(false);
const onLoad = () => {
fetchSomeThing().catch(() => {
loading.value = false;
error.value = true;
});
};