docs: add interop default to dynamic vue import example

This commit is contained in:
Daniel Roe 2023-04-03 11:41:21 +01:00
parent c660b39447
commit 8908aa7c5a

View File

@ -22,7 +22,7 @@ export default <RouterConfig> {
{
name: 'home',
path: '/',
component: () => import('~/pages/home.vue')
component: () => import('~/pages/home.vue').then(r => r.default || r)
}
],
}