blob: 37bbc4dabf4a4bcf4db101700c64fbd8aae47626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<template>
<div>
<iframe style='min-height: 700px;' height='100%' width='100%'
v-bind:src='frameSrc'>
</iframe>
</div>
</template>
<script>
export default {
data: function() {
return {
frameSrc: this.global.GRAFANA_ADDR
}
}
}
</script>
<style scoped>
</style>
|