thiago-Malaca / vue-credit-card

Vue.js component for card https://github.com/jessepollak/card
MIT License
38 stars 50 forks source link

help about cvc #14

Open htuzel opened 5 years ago

htuzel commented 5 years ago

How can I invert card? I didn't understand using of it

fmvnow commented 5 years ago

@hayreddintuzel: I've the same problem with it. I solved it using the v-card-focus directive and that work flipping card.

This was my code:

<input
  id="cvc"
  v-model="cardDetail.cvc"
  v-mask="mask.cvc"
  v-card-focus
  aria-describedby
  aria-label="ex.:123"
  class="form-control"
  name="cvc"
  placeholder="ex.:123"
  type="text"
/>