diff --git a/src/App.vue b/src/App.vue index 68584ce..63daae1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -51,9 +51,9 @@ const styledBorderRadiusFormatted = computed(() => `${styleBorderRadius.value}px const styleBackground = ref(defaultPreset.style.background) const lastBackground = ref(defaultPreset.style.background) -const withBackground = ref(true) -watch(withBackground, () => { - if (!withBackground.value) { +const includeBackground = ref(true) +watch(includeBackground, () => { + if (!includeBackground.value) { lastBackground.value = styleBackground.value styleBackground.value = 'transparent' } else { @@ -306,7 +306,7 @@ onMounted(() => {