Open feitingjun opened 4 years ago
微信小程序里面
使用taro 3.0.0-beta.3,在pages/index/index.jsx 里面import { AtGrid } from 'taro-ui'后,该页面的sourceMap就失效了
import React, { Component } from 'react' import Taro from '@tarojs/taro' import { View, Image } from '@tarojs/components' import { observer, inject } from 'mobx-react' import { AtGrid } from 'taro-ui' @inject('store') @observer class Index extends Component { increment = () => { debugger } render() { return ( <View onClick={this.increment}> 点击 </View> ) } } export default Index
欢迎提交 Issue~
如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏
如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。
Good luck and happy coding~
微信小程序里面
使用taro 3.0.0-beta.3,在pages/index/index.jsx 里面import { AtGrid } from 'taro-ui'后,该页面的sourceMap就失效了