Skip to content

Instantly share code, notes, and snippets.

@richardevcom
Created April 3, 2024 01:16
Show Gist options
  • Save richardevcom/2cbea9635528c9e2c69d7067bdcc05bc to your computer and use it in GitHub Desktop.
Save richardevcom/2cbea9635528c9e2c69d7067bdcc05bc to your computer and use it in GitHub Desktop.
Nuxt 3 & Vue.js 3 on window resize event listener.
<script setup lang="ts">
onMounted(() => window.addEventListener("resize", onResize, true))
function onResize(): void {
console.log("Resized")
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment