index.vue
514 Bytes
<template>
<div class="manage-container deviceStatus-wrapper">
<iframe :src="deviceLogUrl" width="100%" height="800" frameborder="0" scrolling="auto" id="iframename" name="iframename"></iframe>
</div>
</template>
<script>
import Cookies from 'js-cookie'
export default {
components: {
},
data() {
return {
deviceLogUrl: window._vionConfig.deviceLogUrl
};
},
computed: {
},
filters: {
},
mounted() {
},
methods: {
}
};
</script>
<style scoped>
</style>