33 lines
457 B
Vue
33 lines
457 B
Vue
<template>
|
|
<div class="iframe-container">
|
|
<iframe
|
|
:src="'http://192.168.42.57:8080/QinHuangDao'"
|
|
width="100%"
|
|
height="100%"
|
|
allowfullscreen
|
|
style="overflow-y:hidden;overflow-x:hidden;"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
components: {
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.iframe-container {
|
|
position: fixed;
|
|
top: 10;
|
|
left: 10;
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
</style>
|