Vue routing processing load statu

according to the example provided on the official website, it is found that delay and timeout do not know how to use
export default () = > {

after testing.
const AsyncComponent = () => ({
    component: import("@/views/Me"),
    loading: LoadingCom,
    error: errorCom,
    delay: 2000,
    timeout: 3000
})
return {
    render: function (h) {
        return h(AsyncComponent, {})
    }
}

}

Mar.29,2021

these advanced options are not supported when asynchronous components are used on routing

Menu