File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { mockWarn } from 'jest-mock-warn'
2
2
import { createMemoryHistory , createRouter } from '../src'
3
- import { defineComponent , FunctionalComponent , h } from 'vue'
3
+ import {
4
+ defineAsyncComponent ,
5
+ defineComponent ,
6
+ FunctionalComponent ,
7
+ h ,
8
+ } from 'vue'
4
9
5
10
let component = defineComponent ( { } )
6
11
@@ -177,6 +182,23 @@ describe('warnings', () => {
177
182
expect ( '"/foo" is a Promise instead of a function' ) . toHaveBeenWarned ( )
178
183
} )
179
184
185
+ it ( 'warns if use defineAsyncComponent in routes' , async ( ) => {
186
+ const router = createRouter ( {
187
+ history : createMemoryHistory ( ) ,
188
+ // simulates import('./component.vue')
189
+ routes : [
190
+ {
191
+ path : '/foo' ,
192
+ component : defineAsyncComponent ( ( ) => Promise . resolve ( { } ) ) ,
193
+ } ,
194
+ ] ,
195
+ } )
196
+ await router . push ( '/foo' )
197
+ expect (
198
+ `Component "default" in record with path "/foo" is defined using "defineAsyncComponent()". Write "() => import('./MyPage.vue')" instead of "defineAsyncComponent(() => import('./MyPage.vue'))"`
199
+ ) . toHaveBeenWarned ( )
200
+ } )
201
+
180
202
it ( 'warns if no route matched' , async ( ) => {
181
203
const router = createRouter ( {
182
204
history : createMemoryHistory ( ) ,
Original file line number Diff line number Diff line change @@ -261,6 +261,16 @@ export function extractComponentsGuards(
261
261
)
262
262
let promise = rawComponent
263
263
rawComponent = ( ) => promise
264
+ } else if (
265
+ ( rawComponent as any ) . __asyncLoader &&
266
+ guardType === 'beforeRouteEnter'
267
+ ) {
268
+ warn (
269
+ `Component "${ name } " in record with path "${ record . path } " is defined ` +
270
+ `using "defineAsyncComponent()". ` +
271
+ `Write "() => import('./MyPage.vue')" instead of ` +
272
+ `"defineAsyncComponent(() => import('./MyPage.vue'))".`
273
+ )
264
274
}
265
275
}
266
276
You can’t perform that action at this time.
0 commit comments