modal-layer.vue 424 B

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