| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="iframe-container" v-loading="loading">
- <iframe src="http://www.hunan.gov.cn/zqt/hqzc/202206/t20220610_25443825.html" scrolling="auto" frameborder="0" class="frame">
- </iframe>
- </div>
- </template>
-
- <script setup>
- import { ref } from 'vue'
- const loading = ref(false)
- </script>
-
- <style lang="scss">
- .iframe-container {
- position: absolute;
- top: 0px;
- left: 0px;
- right: 0px;
- ;
- bottom: 0px;
- .frame {
- width: 100%;
- height: 100%;
- }
-
- .example-showcase .el-loading-mask {
- z-index: 9;
- }
- }
- </style>
|