vue-codemirror定位光标位置并在光标处插入信息

业务场景如下图:在代码编辑器外点击按钮,向代码编辑器内的光标处新增一条拼接好的信息。
在这里插入图片描述

//插入信息
     copyValue(param) {
        let post1=this.$refs.myCode.codemirror.getCursor();
        console.log('post1',post1);
        let pos2={
            line:post1.line,  //行号
            ch:post1.ch //光标位置
        }
        this.$refs.myCode.codemirror.replaceRange(param,pos2)  //替换内容
    }
Logo

前往低代码交流专区

更多推荐