Monaco-Editor插件使用小坑

张开发
2026/4/21 15:06:35 15 分钟阅读

分享文章

Monaco-Editor插件使用小坑
无法通过鼠标进行选中文本div idmonacoEditor classmonacoEditor/div外层添加了splinter拖拽组件导致mousemove事件被拦截给monaco-editor添加csspointer-eventsauto.monacoEditor .monaco-editorpointer-events: auto加载monacoEditor之后高度一直在增加滚动条持续变小原因开启了automaticLayoutMonaco会不断监听容器大小变化但是我的父容器高度跟随内容变化就会变成editor变高 - 容器变高 - editor再变高 - 无限循环解决方案.monaco-editor{height: 500px}或者.monaco-editor{height: 100%}

更多文章