index.vue 589 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="iframe-container" v-loading="loading">
  3. <iframe src="http://www.hunan.gov.cn/zqt/hqzc/202206/t20220610_25443825.html" scrolling="auto" frameborder="0" class="frame">
  4. </iframe>
  5. </div>
  6. </template>
  7. <script setup>
  8. import { ref } from 'vue'
  9. const loading = ref(false)
  10. </script>
  11. <style lang="scss">
  12. .iframe-container {
  13. position: absolute;
  14. top: 0px;
  15. left: 0px;
  16. right: 0px;
  17. ;
  18. bottom: 0px;
  19. .frame {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. .example-showcase .el-loading-mask {
  24. z-index: 9;
  25. }
  26. }
  27. </style>