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.
30 lines
551 B
30 lines
551 B
<template>
|
|
<div id="kb-container" class="dashboard-editor-container" style="background-color: #f6fbff;">
|
|
<iframe src="http://127.0.0.1:9527/#/kban" style="width: 100%;height:100vh"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DataView from "@/views/kban/index.vue";
|
|
|
|
export default {
|
|
name: "SygdFX",
|
|
components: {DataView},
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped >
|
|
.dashboard-editor-container {
|
|
background-color: #e3e3e3;
|
|
min-height: 81vh;
|
|
padding: 0 0;
|
|
}
|
|
</style>
|