From be18c089ef6fd9f2446b9c0cd26b673318052fa8 Mon Sep 17 00:00:00 2001 From: Jinjiang Date: Sat, 31 Jul 2021 20:32:09 +0800 Subject: [PATCH] Added the missing JS comma at the end of a line --- src/api/global-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/global-api.md b/src/api/global-api.md index 7febfd64e3..12d49956e9 100644 --- a/src/api/global-api.md +++ b/src/api/global-api.md @@ -202,7 +202,7 @@ import { defineAsyncComponent } from 'vue' const AsyncComp = defineAsyncComponent({ // The factory function - loader: () => import('./Foo.vue') + loader: () => import('./Foo.vue'), // A component to use while the async component is loading loadingComponent: LoadingComponent, // A component to use if the load fails