From a2b7db14188d0b85fb766cbce640a7d23a059bf3 Mon Sep 17 00:00:00 2001 From: sight <1453017105@qq.com> Date: Sat, 5 Mar 2022 15:49:47 +0800 Subject: [PATCH] =?UTF-8?q?chore(fullscreen):=20=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E9=83=A8=E5=88=86=E6=B5=8B=E8=AF=95=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/component/fullscreen/index.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/component/fullscreen/index.vue b/src/component/fullscreen/index.vue index fa9a5ee0..3ce85fa1 100644 --- a/src/component/fullscreen/index.vue +++ b/src/component/fullscreen/index.vue @@ -20,10 +20,6 @@ export interface LayFullscreenProps { immersive?: boolean; position?: string; zIndex?: string; - // top?: string; - // left?: string; - // width?: string; - // height?: string; } const props = withDefaults(defineProps(), { @@ -182,11 +178,6 @@ const styleLayFullscreen = function ( ) { el.style.position = isRemove ? "" : props.position || ""; el.style.zIndex = isRemove ? "" : props.zIndex || ""; - // 实验内容 - // el.style.top = isRemove ? "" : (props.top || ""); - // el.style.left = isRemove ? "" : (props.left || ""); - // el.style.width = isRemove ? "" : (props.width || ""); - // el.style.height = isRemove ? "" : (props.height || ""); }; const activeEl = computed(() => (targetEl.value = props.target));