Modal.vue 478 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="overlay">
  3. <div class="modal">
  4. <slot></slot>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: "",
  11. data: () => ({
  12. })
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. .overlay{
  17. background-color: rgba(0,0,0,0.8);
  18. position:fixed;
  19. top:0; right:0; bottom:0; left:0;
  20. z-index:99999;
  21. }
  22. .modal{
  23. background-color:#fff;
  24. position:absolute;
  25. width:250px;
  26. height:200px;
  27. top:0; right:0; bottom:0; left:0;
  28. margin:auto;
  29. }
  30. </style>