This commit is contained in:
icssoa
2025-08-02 17:17:13 +08:00
parent c606dbaea3
commit 4398574183
8 changed files with 24 additions and 68 deletions

View File

@@ -3,7 +3,6 @@
<cl-sign
ref="signRef"
:height="isFullscreen ? windowHeight - 200 : 200"
:width="windowWidth"
:enable-brush="isBrush"
></cl-sign>
@@ -29,7 +28,7 @@
<script setup lang="ts">
import { ref } from "vue";
const { windowWidth, windowHeight } = uni.getWindowInfo();
const { windowHeight } = uni.getWindowInfo();
const isFullscreen = ref(false);
const isBrush = ref(true);