This commit is contained in:
Henry Jordan
2021-01-28 19:05:33 +00:00
parent b2bd50cf30
commit 576d76652c
5 changed files with 68 additions and 22 deletions

View File

@@ -9,7 +9,7 @@
allowfullscreen
@load="onLoadIframe"
></iframe>
<Debugger v-if="openDebug === true" :style="'height:' + height + 'px'" />
<Debugger v-if="openDebug === true" :style="'height:' + height + 'px'" ref="debugger"/>
</div>
</template>
@@ -62,6 +62,14 @@ export default {
classBtn(cls) {
return "btn v-btn-request " + cls;
},
/**
* update view in component
*/
updateView(){
if(this.openDebug){
this.$refs["debugger"].loadData();
}
},
onLoadIframe() {},
},
};