<quill-editor
   ref="quillEditor"
   v-model="formData.content"
   @focus="focus($event)" //在焦点事件时候处理
   :options="options"
/>

当用户点击富文本框输入框的时候,就会被设置为禁止编辑

//获取焦点事件
 focus(event){
  event.enable(false);  //设置富文本编辑器不可编辑
 }

更多推荐

vue-quill-editor富文本编辑器,设置只读/禁止编辑