⬅️ Back to Table of Contents
📄 demo.vue
📊 Analysis Summary
Metric |
Count |
🔧 Functions |
3 |
📦 Imports |
2 |
📚 Table of Contents
🛠️ File Location:
📂 packages/shared/watchIgnorable/demo.vue
📦 Imports
Name |
Source |
watchIgnorable |
@vueuse/core |
shallowRef |
vue |
Functions
clear(): void
Code
function clear() {
source.value = 0
log.value = ''
}
update(): void
Code
function update() {
source.value++
}
ignoredUpdate(): void
Code
function ignoredUpdate() {
ignoreUpdates(() => {
source.value++
})
}
- Return Type:
void
- Calls:
ignoreUpdates