<script setup lang="ts">
import { useWindowSize } from '@vueuse/core'
const { width, height } = useWindowSize()
function checkChapter(idFromEvent) {
if (width < 1228) {
// ...
}
}
</script>
<template>
<p>{{ width }} x {{ height }}</p>
</template>