Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. import UseModal from './shared/modal/UseModalMixin.js';
  3.  
  4. export default {
  5. mixins: [UseModal],
  6. };
  7. </script>
  8.  
  9. <template>
  10. <modal size="md" v-ref:modal>
  11. <h3 slot="header">
  12. <strong>TITLE</strong>
  13. </h3>
  14.  
  15. <div>
  16. CONTENT
  17. </div>
  18.  
  19. <div slot="footer">
  20. <button @click="close()" class="btn btn-default" type="button">Cancelar</button>
  21. <button @click="save()" :disabled="!$form.valid" class="btn btn-danger" type="button">Salvar</button>
  22. </div>
  23. </modal>
  24. </template>
  25.  
  26. <style>
  27.  
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement