fix the toggle issue check fmhy commit for more info

This commit is contained in:
Land 2025-11-01 15:05:12 +00:00
parent b459cb974e
commit 8f4ae70d3a

View file

@ -135,7 +135,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>