1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| <!-- @format -->
| <template>
| <el-dialog :visible.sync="mindMapDialog" width="80%" top="2vh" append-to-body>
| <div class="wendabox">
| <iframe src="https://www.iodraw.com/mind" frameborder="0"></iframe>
| </div>
| </el-dialog>
| </template>
| <script>
| export default {
| name: 'mindMap_view',
| data() {
| return {
| mindMapDialog:false
| }
| },
|
| methods: {
| openDialog() {
| this.mindMapDialog = true
| },
| },
| }
| </script>
| <style lang="less" scoped>
| .wendabox {
| height: 85vh;
| padding:10px;
|
| iframe {
| width: 100%;
| height: 100%;
| }
| }
| </style>
|
|