card.vue 336 B

1234567891011121314151617181920
  1. <template>
  2. <button class="btn btn-primary me-3 font-bold" @click="count++">Count is: {{ count }}</button>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. initialCounter: { type: Number, default: 0 }
  8. },
  9. data () {
  10. return {
  11. count: this.initialCounter
  12. }
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>