first commit

This commit is contained in:
zc
2026-02-26 17:31:18 +08:00
commit f1b87df6ca
803 changed files with 297148 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Modal, type ModalReturn } from '@arco-design/web-vue'
let modalInstance: ModalReturn | null
const modalErrorWrapper = (options: any) => {
if (modalInstance) {
modalInstance.close()
}
modalInstance = Modal.error(options)
}
export default modalErrorWrapper