according to the example provided on the official website, it is found that delay and timeout do not know how to use
export default () = > {
const AsyncComponent = () => ({
component: import("@/views/Me"),
loading: LoadingCom,
error: errorCom,
delay: 2000,
timeout: 3000
})
return {
render: function (h) {
return h(AsyncComponent, {})
}
}
}