mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(list): update Error loading module code (#12778)
This commit is contained in:
parent
cecfc4590d
commit
7217004dd8
@ -86,6 +86,7 @@ export default {
|
|||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const onLoad = () => {
|
const onLoad = () => {
|
||||||
fetchSomeThing().catch(() => {
|
fetchSomeThing().catch(() => {
|
||||||
|
loading.value = false;
|
||||||
error.value = true;
|
error.value = true;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -95,6 +95,7 @@ export default {
|
|||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const onLoad = () => {
|
const onLoad = () => {
|
||||||
fetchSomeThing().catch(() => {
|
fetchSomeThing().catch(() => {
|
||||||
|
loading.value = false;
|
||||||
error.value = true;
|
error.value = true;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user