index.vue 365 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="iframBox" v-if="pageReady">
  3. <iframe src="http://123.60.223.250:6080/#/d2d"></iframe>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. pageReady: false
  11. }
  12. },
  13. mounted() {
  14. this.pageReady = true
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .iframBox,
  20. iframe {
  21. width: 100%;
  22. height: 100%;
  23. }
  24. </style>