Examples of code I've written in PHP, Javascript, SCSS, etc.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

saved-cards.vue 728 B

il y a 3 ans
12345678910111213141516171819202122232425262728
  1. <template>
  2. <div v-if="cards">
  3. <div v-for="(card, index) in cards" :key="card.id" class="saved-card">
  4. <span>{{card.card.brand[0].toUpperCase() + card.card.brand.substring(1)}}
  5. (••••{{card.card.last4}})</span>
  6. <input :checked="index === 0 || card.id == preferred" :value="card.id" name="selected-card" type="radio"
  7. @change="$emit('update:pickedCard', card.id)">
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {}
  15. },
  16. mounted() {
  17. if (this.cards && this.cards.length > 0) {
  18. this.$emit('update:pickedCard', this.cards[0].id)
  19. }
  20. },
  21. unmounted() {
  22. this.$emit('update:pickedCard', null)
  23. },
  24. props: ['token', 'cards', 'preferred'],
  25. emits: ['update:pickedCard']
  26. }
  27. </script>