Skip to content

Commit 252bbfd

Browse files
authored
Added the missing JS comma at the end of a line (#1155)
1 parent 37a4088 commit 252bbfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/global-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ import { defineAsyncComponent } from 'vue'
202202

203203
const AsyncComp = defineAsyncComponent({
204204
// The factory function
205-
loader: () => import('./Foo.vue')
205+
loader: () => import('./Foo.vue'),
206206
// A component to use while the async component is loading
207207
loadingComponent: LoadingComponent,
208208
// A component to use if the load fails

0 commit comments

Comments
 (0)