123456789101112131415161718192021 |
- <template>
- <div class="fireZhuj">
- <iframe src="http://172.16.253.25:8090/FireZhuj/monitor" width="100%" height="100%" frameborder="0"></iframe>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, reactive, onMounted } from 'vue'
- </script>
- <style lang="less" scoped>
- .fireZhuj {
- position: relative;
- width: calc(100% - 20px);
- // height: calc(100vh - 82px);
- height: 863px;
- margin: 50px 10px 15px;
- background: #282828;
- }
- </style>
|