登录 注册
当前位置:主页 > 资源下载 > 50 > Taro-weMark: 适配Taro框架的微信小程序Markdown渲染库

Taro-weMark: 适配Taro框架的微信小程序Markdown渲染库

  • 更新:2024-08-30 10:31:32
  • 大小:37KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

微信小程序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 () {