FinishAppointment.vue 418 B

1234567891011121314151617181920212223
  1. <template>
  2. <div v-if="permission && unfinished">
  3. <button
  4. class="btn btn-lg btn-warning btn-block"
  5. @click="finishAppointment()"
  6. >
  7. Finish Appointment ⌛
  8. </button>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: "FinishAppointment",
  14. props: ["keyId", "permission", "unfinished"],
  15. methods: {
  16. finishAppointment: function() {
  17. console.log("TODO");
  18. }
  19. }
  20. };
  21. </script>