fix: 修复错误的DOM类型

This commit is contained in:
悠静萝莉 2024-09-03 02:40:50 +08:00
parent 5b8f322310
commit 79673bb727
No known key found for this signature in database
GPG Key ID: 4EDF1CA1CEA8EBCC

View File

@ -21,7 +21,7 @@ const { width, height } = useWindowSize();
const loading = ref(true);
const heightRef = ref(window.innerHeight);
const frameRef = ref<HTMLFrameElement>();
const frameRef = ref<HTMLIFrameElement>();
const prefixCls = computed(() => [`${prefix}-iframe-page`]);
const settingStore = useSettingStore();