We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
2.5.16
https://jsbin.com/goduyol/1/edit?html,js,output
const test = () => ({ component: new Promise((resolve, reject) => { setTimeout(() => { reject() }, 500) }), loading: { template: <div>loading</div> }, error: { template: <div>error</div> }, delay: 0, timeout: 10000 })
<div>loading</div>
<div>error</div>
export default new Router({ routes: [ { path: '/test', name: 'test', component: test } ] })
1.定义上面所示的路由组件,希望能在报错时渲染出error组件(官方文档中有写到 `注意如果你希望在 Vue Router 的路由组件中使用上述语法的话,你必须使用 Vue Router 2.4.0 版本’ 而我使用的是2.8.1,应该是符合这个条件了)
在reject()后,界面能出现error组件
未出现error组件,控制台报错 Error: Failed to resolve async component default: undefined at vue-router.esm.js:1767 at vue-router.esm.js:1833
The text was updated successfully, but these errors were encountered:
See vuejs/vue-router#2140
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: