Created
February 1, 2018 20:51
-
-
Save mitrallex/1355e48180f19b264f03a9ba3034f01a to your computer and use it in GitHub Desktop.
laravel-file-hosting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <transition name="modal"> | |
| <div class="modal-mask" v-if="showConfirm" v-cloak> | |
| <div class="modal-wrapper"> | |
| <div class="modal-container"> | |
| <div class="modal-body"> | |
| <h2>Are you sure?</h2> | |
| </div> | |
| <div class="modal-footer"> | |
| <button class="button" @click="deleteFile()"> | |
| Confirm | |
| </button> | |
| <button class="button" @click="cancelDeleting()"> | |
| Cancel | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </transition> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment