Home

Awesome

ngx-neditor

基于@notadd/neditor,更现代化的富文本编辑器angular组件

How to use

step-1

安装@notadd/ngx-neditor

安装依赖

⚠ neditor需在assets/node_modules下安装

step-2

  import { NgxNeditorModule } from '@notadd/ngx-neditor';

  @NgModule({
    imports: [
        ...
        NgxNeditorModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
  })
  export class AppModule { }

step-3

<ngx-neditor [(ngModel)]="content" #neditor [config]="config"></ngx-neditor>

属性

名称类型默认值描述
configObject-前端配置项说明,见官网
loadingTipstring加载中...初始化提示文本
disabledbooleanfalse是否禁用
delaynumber50延迟初始化neditor,单位:毫秒
neOnReadyEventEmitter<UEditorComponent>-编辑器准备就绪后会触发该事件,并会传递 NgxNeditorComponent 当前实例对象,可用于后续操作。
neOnDestroyEventEmitter-编辑器组件销毁后会触发该事件
ngModelChangeEventEmitter<string>-编辑器内容发生改变时会触发该事件