mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
b38dc097f6
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
11 lines
151 B
Vue
11 lines
151 B
Vue
<script setup lang="ts">
|
|
const width = window.innerWidth
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
Window width: {{ width }}
|
|
<slot />
|
|
</div>
|
|
</template>
|