index.vue 454 B

123456789101112131415161718192021
  1. <template>
  2. <div class="fireZhuj">
  3. <iframe src="http://172.16.253.25:8090/FireZhuj/monitor" width="100%" height="100%" frameborder="0"></iframe>
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import { ref, reactive, onMounted } from 'vue'
  8. </script>
  9. <style lang="less" scoped>
  10. .fireZhuj {
  11. position: relative;
  12. width: calc(100% - 20px);
  13. // height: calc(100vh - 82px);
  14. height: 863px;
  15. margin: 50px 10px 15px;
  16. background: #282828;
  17. }
  18. </style>