Advertisement
Guest User

AirlineEdit.vue

a guest
Feb 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <template>
  2. <div class="container-fluid">
  3. <h1 class="font-weight-light text-primary">Edit Airline</h1><hr>
  4. <div class="row mb-1">
  5. <div class="col-md-12">
  6. <button type="button" class="btn btn-primary float-right" @click.prevent="cancelEditing">
  7. <span class="fas fa-chevron-left mr-1"></span>
  8. Back
  9. </button>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. props: {
  17. edit: {}
  18. },
  19. methods: {
  20. cancelEditing() {
  21. console.log('disabling edit mode')
  22. this.$emit('cancelEditing')
  23. }
  24. }
  25. }
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement