soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame contribute delete
233 Bytes
import { onUnmounted } from 'vue'
import { watchSharedData } from '@vue-devtools/shared-utils'
export function onSharedDataChange(prop, handler) {
const off = watchSharedData(prop, handler)
onUnmounted(() => {
off()
})
}