RepairScreen.vue 330 B

12345678910111213141516171819202122
  1. <template>
  2. <iframe
  3. :src="url"
  4. id="mobsf"
  5. scrolling="no"
  6. frameborder="0"
  7. allowtransparency="true"
  8. width="100%"
  9. :height="clientHeight"></iframe>
  10. </template>
  11. <script>
  12. export default {
  13. data () {
  14. return {
  15. url: '/HITACHI-screen/index.html',
  16. clientHeight: '1000px'
  17. }
  18. }
  19. }
  20. </script>