富文本

<rich-text>

基本步骤

语法1 - 局部使用
onLoad(option) {
    let WxParse = require('../../utils/wxParse/wxParse.js')
    let article = '<div>我是HTML代码</div>'
    let that = this;
    WxParse.wxParse('article', 'html', article, that, 5);
}
语法2 - 全局使用
WxParse : require('../../utils/wxParse/wxParse.js'),
article : '<div>我是HTML代码</div>',
onLoad(option) {
    let that = this;
    this.WxParse.wxParse('article', 'html', this.article, that, 5);
}