⬅️ Back to Table of Contents
📄 demo.vue
📊 Analysis Summary
Metric |
Count |
🔧 Functions |
2 |
📦 Imports |
3 |
📚 Table of Contents
🛠️ File Location:
📂 packages/core/useCssVar/demo.vue
📦 Imports
Name |
Source |
useCssVar |
@vueuse/core |
shallowRef |
vue |
useTemplateRef |
vue |
Functions
switchColor(): void
Code
function switchColor() {
if (color.value === '#df8543')
color.value = '#7fa998'
else
color.value = '#df8543'
}
changeVar(): void
Code
function changeVar() {
if (key.value === '--color')
key.value = '--color-one'
else
key.value = '--color'
}