rich-text

富文本。

属性名类型默认值说明最低版本
nodesArray/String[ ]节点列表 / HTML String

WARNING

nodes 属性推荐使用 Array 类型,由于组件会将 String 类型转换为 Array 类型,因而性能会有所下降

示例

  1. <rich-text nodes="{{nodes}}"></rich-text>
  1. Page({
  2. data: {
  3. nodes: [{
  4. name: 'div',
  5. attrs: {
  6. class: 'div_class',
  7. style: 'line-height: 60px; color: red;'
  8. },
  9. children: [{
  10. type: 'text',
  11. text: 'Hello&nbsp;World!'
  12. }]
  13. }]
  14. }
  15. })

rich-text - 图1

原文: https://developer.toutiao.com/docs/comp/rich-text.html