2024-01-24 00:50

Vue에서 모바일 기기의 소프트 키보드가 열려있는지 확인하는 방법

<script>
const detectKeyboardOpen = () => {
const minKeyboardHeight = 300; // 일반적인 최소 키보드 높이 (px)
return window.screen.heigh...

댓글