DEV Community

Cover image for Watch Props in Vue/Nuxt Composition API
Manthankumar Satani
Manthankumar Satani

Posted on

Watch Props in Vue/Nuxt Composition API

Watch dynamic props inside setup method in Nuxt3 or Vue3 CompositionAPI

<script lang="ts" setup>
import { defineProps, watch } from 'vue'

const prop = defineProps({
  value: { default: '', type: [String, Number] },
})

watch(
  () => prop.value,
  () => {
    console.log('prop value changed', prop.value)
  }
)
</script>

<template>
  <div>{{ value }}</div>
</template>

Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
1doneazy profile image
Eazybright😊😊

Thanks for this. It was really helpful.