refactor: put dynamic imports at the top of the file
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
parent
5bf81d016f
commit
ba8ab6a4bb
@ -42,6 +42,9 @@ import {useBaseStore} from '@/stores/base'
|
||||
import {useColorScheme} from '@/composables/useColorScheme'
|
||||
import {useBodyClass} from '@/composables/useBodyClass'
|
||||
|
||||
const importAccountDeleteService = async () => (await import('@/services/accountDelete')).default
|
||||
const importSuccess = async () => (await import('@/message')).success
|
||||
|
||||
const baseStore = useBaseStore()
|
||||
const authStore = useAuthStore()
|
||||
const router = useRouter()
|
||||
@ -62,11 +65,11 @@ watch(accountDeletionConfirm, async (accountDeletionConfirm) => {
|
||||
return
|
||||
}
|
||||
|
||||
const messageP = import('@/message')
|
||||
const AccountDeleteService = (await import('@/services/accountDelete')).default
|
||||
const successP = importSuccess()
|
||||
const AccountDeleteService = await importAccountDeleteService()
|
||||
const accountDeletionService = new AccountDeleteService()
|
||||
await accountDeletionService.confirm(accountDeletionConfirm)
|
||||
const {success} = await messageP
|
||||
const success = await successP
|
||||
success({message: t('user.deletion.confirmSuccess')})
|
||||
authStore.refreshUserInfo()
|
||||
}, { immediate: true })
|
||||
|
Reference in New Issue
Block a user