使用uniapp引入了jsmind, 想实现jsmind.online中显示的app效果. 但是最终效果是: 思维导图的线单独显示在上面, 所有结点单独显示在下面. 样式代码为: `<style scoped> .scrollable-container { width: 100%; overflow-x: auto; } .jsmind-container { height: 700px; border: solid 1px #ccc; } </style> <template> <div class="scrollable-container"> <div ref="jsmind_container" class="jsmind-container"></div> </div> </template>` 
使用uniapp引入了jsmind, 想实现jsmind.online中显示的app效果.
但是最终效果是: 思维导图的线单独显示在上面, 所有结点单独显示在下面.
样式代码为:
`<style scoped>
.scrollable-container {
width: 100%;
overflow-x: auto;
}
.jsmind-container {
height: 700px;
border: solid 1px #ccc;
}
</style>