File size: 233 Bytes
4d70170
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { onUnmounted } from 'vue'
import { watchSharedData } from '@vue-devtools/shared-utils'

export function onSharedDataChange(prop, handler) {
  const off = watchSharedData(prop, handler)

  onUnmounted(() => {
    off()
  })
}