Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

异步组件-处理加载状态在路由组件中使用无效(vue-router版本为2.8.1) #8542

Closed
tangyuhui opened this issue Jul 23, 2018 · 1 comment

Comments

@tangyuhui
Copy link

Version

2.5.16

Reproduction link

https://jsbin.com/goduyol/1/edit?html,js,output

Steps to reproduce

const test = () => ({
component: new Promise((resolve, reject) => {
setTimeout(() => {
reject()
}, 500)
}),
loading: { template: <div>loading</div> },
error: { template: <div>error</div> },
delay: 0,
timeout: 10000
})

export default new Router({
routes: [
{
path: '/test',
name: 'test',
component: test
}
]
})

1.定义上面所示的路由组件,希望能在报错时渲染出error组件(官方文档中有写到 `注意如果你希望在 Vue Router 的路由组件中使用上述语法的话,你必须使用 Vue Router 2.4.0 版本’ 而我使用的是2.8.1,应该是符合这个条件了)

What is expected?

在reject()后,界面能出现error组件

What is actually happening?

未出现error组件,控制台报错
Error: Failed to resolve async component default: undefined
at vue-router.esm.js:1767
at vue-router.esm.js:1833

@haoqunjiang
Copy link
Member

See vuejs/vue-router#2140

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants