vue-quill-editor富文本编辑器取消自动获取焦点

 mounted(){

      this.$refs.myTextEditor.quill.enable(false);//解决富文本自动聚焦

      setTimeout(() => {

        this.$refs.myTextEditor.quill.enable(true);//一秒之后可点击

      }, 1000);

  },

 mounted(){
      this.$refs.myTextEditor.quill.enable(false);//解决富文本自动聚焦
      setTimeout(() => {
        this.$refs.myTextEditor.quill.enable(true);//一秒之后可点击
      }, 1000);
  },

这样打开之后就不是富文本的位置了

猜你喜欢

转载自blog.csdn.net/weixin_42574985/article/details/127420362
今日推荐