mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-26 23:52:06 +00:00
b38dc097f6
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
11 lines
167 B
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>
|