modal-layer.vue 408 B

123456789101112131415161718192021222324252627282930313233
  1. <template name="modal">
  2. <view class="modal">
  3. <view class="modal-content"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:'modal',
  9. data() {
  10. return {
  11. }
  12. },
  13. created() {
  14. },
  15. computed: {
  16. },
  17. }
  18. </script>
  19. <style lang="scss">
  20. .modal-content {
  21. width: 100%;
  22. height: 100%;
  23. position: fixed;
  24. left: 0;
  25. top: 0;
  26. background:rgba(255,255,255,0);
  27. z-index: 7777;
  28. }
  29. </style>