Vue-quill-editor enter key event

does the vue-quill-editor plug-in have an enter key event

Jul.25,2021

looks at the document below. You can bind keyboard events. Link here https://quilljs.com/docs/modu.


give you a chestnut

methods:{
        onEditorReady(quill) {
      this.$set(this.get, 'quill', quill);
      
      // 
      this.get.quill.keyboard.addBinding({ key: 'B' }, this.keyBindFn);
    },
    keyBindFn() {
      let vm = this;
      console.log('1 :', 1);
    },
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ec2e-e98c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ec2e-e98c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?