{
const time = VueUse.useTimestamp()
const stop = Vue.watch(time, (newVal)=>{
mutable updateInOtherCell = newVal
})
invalidation.then(()=>{
stop()
})
return html`<p>update in other cell and use invalidation api to cancel listeners, <br />or it will be left in RAM and run forever (until you refresh the page)</p>`
}