Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <button type="button" class="btn btn-info btn-lg" v-modal-open="'modal-1'">Open Modal</button>
  2.  
  3. <v-modal ref="modal-1">
  4. <div class="modal-dialog">
  5. <!-- Modal content-->
  6. <div class="modal-content">
  7. <div class="modal-header">
  8. <button type="button" class="close" v-modal-close="'modal-1'">&times;</button>
  9. <h4 class="modal-title">Modal Header</h4>
  10. </div>
  11. <div class="modal-body">
  12. <p>Some text in the modal.</p>
  13. </div>
  14. <div class="modal-footer">
  15. <button type="button" class="btn btn-default" v-modal-close="'modal-1'">Close</button>
  16. </div>
  17. </div>
  18. </div>
  19. </v-modal>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement