You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
388 B
31 lines
388 B
|
3 years ago
|
<template>
|
||
|
|
<div class="content">
|
||
|
|
<iframe
|
||
|
|
src="/static/index.html"
|
||
|
|
width="100%"
|
||
|
|
height="100%"
|
||
|
|
ref="iframeDom"
|
||
|
|
frameborder="0"
|
||
|
|
></iframe>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data(){
|
||
|
|
return {
|
||
|
|
src:''
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.content{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
</style>
|