NervJS / taro-ui

一款基于 Taro 框架开发的多端 UI 组件库
https://taro-ui.taro.zone
MIT License
4.55k stars 756 forks source link

taro-ui: 3.0.0-alpha.2,在页面引入taro-ui后,该页面的sourceMap功能失效 #1061

Open feitingjun opened 4 years ago

feitingjun commented 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

2222222

taro-ui-bot[bot] commented 4 years ago

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~