Nuxt/examples/auto-imports/components/components/JustClient.client.vue

11 lines
167 B
Vue

<script setup lang="ts">
const height = window.innerHeight
</script>
<template>
<div>
This is client only.
Window height: {{ height }}
</div>
</template>