-
Taro-weMark: 适配Taro框架的微信小程序Markdown渲染库
资源介绍
微信小程序markdown渲染库-Taro框架适配版本
原版链接
GitHub地址:
使用方法
1、将src目录复制到自己的项目中,目录更名为taro-wemark。
2、在页面中使用
// 引入组件
import Taro, { Component } from '@tarojs/taro'
import TaroWemark from '../../components/taro-wemark/taro-wemark'
export default class Index extends Component{
constructor() {
super();
this.state = {
content: '## hello, world'
};
}
render () {
- 上一篇: vue-cli中config目录下的index.js文件详解
- 下一篇: 自定义下拉控件的显示和隐藏