配置行高

编辑器的行高,可以通过 editor.config.lineHeights 配置。

  1. const E = window.wangEditor
  2. const editor = new E('#div1')
  3. // 配置行高
  4. editor.config.lineHeights = ['1', '1.15', '1.6', '2', '2.5', '3']
  5. editor.create()