中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何监听RichEditor组件的初始化完成?
微信扫码分享
@Entry @Component struct Index { controller: RichEditorController = new RichEditorController(); options: RichEditorOptions = { controller: this.controller }; build() { Column() { RichEditor(this.options) .onReady(()=>{ //组件初始化成功 }) .width(300) .height(300) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }