if i write async component, show Vue Warn ``` async openReferral(mailID) { let that = this; let addReferral= async ()=>{return await import('../../referral/referralTask/add.vue')} that.$dlg.modal(addReferral, {width: 800, height: 750, title: "add task" params: { mailID :mailID, }}); }, ``` 