TEditor

作者: Hondry | 来源:发表于2019-05-15 11:38 被阅读0次

一款新的基于div属性来开源的编辑器,使用typescript来编写

具有丰富的可扩展性

  const options={
      // 一些属性配置参数
  }
  const editor = new TEditor(options)

方便的可扩展插件功能

方便的插件开发支持

  const myPlugin = function(){
      // to do.....
  } 
  editor.PluginManager.add(myPlugin)

方便的ui控件支持

  class button {
      constructor(options){
          this.icon = options.icon;
          // ……
      }
  }

使用优雅的typescript编写,目前只计划开发PC端

ps: 加入开发联系作者

通过icloud邮箱联系我: hondry@icloud.com

相关文章

  • TEditor

    一款新的基于div属性来开源的编辑器,使用typescript来编写 具有丰富的可扩展性 方便的可扩展插件功能 方...

网友评论

      本文标题:TEditor

      本文链接:https://www.haomeiwen.com/subject/fytpaqtx.html