mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-23 17:10:07 +00:00
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>
|