美文网首页mpvue
mpvue 微信小程序富文本解析

mpvue 微信小程序富文本解析

作者: 与蟒唯舞 | 来源:发表于2018-07-30 18:21 被阅读1669次

mpvue 是一个使用 Vue.js 开发小程序的前端框架。

按照官方的 快速上手 文档,如果之前接触过微信小程序开发和 Vue.js 的话,还是很容易上手的。

在这里主要记录一个第三方插件的使用:
mpvue-wxparse:适用于 Mpvue 的微信小程序富文本解析自定义组件,支持 HTMLmarkdown 解析。

安装
npm i mpvue-wxparse --save
使用
<template>
  <div>
    <wxParse :content="article" />
  </div>
</template>

<script>
import wxParse from 'mpvue-wxparse'

export default {
  components: {
    wxParse
  },
  data () {
    return {
      article: '<div>我是HTML代码</div>'
    }
  }
}
</script>

<style>
@import url("~mpvue-wxparse/src/wxParse.css");
</style>

相关文章

网友评论

    本文标题:mpvue 微信小程序富文本解析

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