fix: 修复错误

This commit is contained in:
ganpeng
2022-06-01 13:57:02 +08:00
parent f20f4209a3
commit 873e0d3e43
5 changed files with 4 additions and 5 deletions

View File

@@ -41,7 +41,7 @@
const props = defineProps({ ...basicProps });
const emit = defineEmits(['on-close', 'on-ok', 'register']);
const propsRef = ref(<Partial<ModalProps> | null>null);
const propsRef = ref<Partial<ModalProps> | null>(null);
const isModal = ref(false);
const subLoading = ref(false);