Update ColorPicker.vue

This commit is contained in:
Land 2025-11-01 15:34:20 +05:30 committed by GitHub
parent b4124d8084
commit 94a8111b07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -224,7 +224,7 @@ const normalizeColorName = (colorName: string) =>
<!-- AMOLED toggle -->
<div class="mt-4 flex items-center gap-2">
<span class="text-sm text-$vp-c-text-2">AMOLED</span>
<Switch @click="isAmoledMode = !isAmoledMode" />
<Switch v-model="isAmoledMode" @click="isAmoledMode = !isAmoledMode" />
</div>
</div>
</template>