mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:33:52 +09:00
710 B
710 B
state
| state | ||
|---|---|---|
|
VCreditCard
Vuero ships with the <VCreditCard /> component, a custom credit card
previewer. Check the code for more details.
<script setup lang="ts">
const flipped = ref(null)
</script>
<template>
<VField>
<VControl>
<VCreditCard
color="grey"
:flipped="flipped"
@flip="flipped = !flipped"
/>
</VControl>
</VField>
</template>