test.vue 738 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <script setup>
  2. </script>
  3. <template>
  4. <jt-popup2 title="" >
  5. </jt-popup2>
  6. <jt-popup2 title="" top="calc(calc(100% - 115rem) / 3 + 90rem)" >
  7. </jt-popup2>
  8. <jt-popup2 title="" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)" >
  9. </jt-popup2>
  10. <jt-popup3 title="">
  11. </jt-popup3>
  12. <jt-popup3 title="" top="calc(calc(100% - 115rem) / 3 + 90rem)">
  13. </jt-popup3>
  14. <jt-popup3 title="" top="calc(calc(100% - 115rem) / 3 + calc(100% - 115rem) / 3 + 90rem)">
  15. </jt-popup3>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. methods:{
  24. },
  25. mounted() {
  26. },
  27. created() {
  28. }
  29. }
  30. </script>
  31. <style scoped>
  32. .main {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. </style>