Results 5 issues of jamie

``` import { observable } from './helper/mobx' class Test { @observable static test = [1, 2, 3] @observable static currenciesChineseName = { CNY: '人民币', USD: '美元', HKD: '港币', EUR: '欧元',...

``` ``` 这个在react-router下,都指向同一个页面,并且路由切换的时候组件不会重新挂载。但keeper会重新挂载。

这是源码 ``` import 'babel-polyfill' import React from 'react' import ReactDOM from 'react-dom' import { LocaleProvider } from 'antd' ``` 使用babel编译后 ``` import 'antd/lib/locale-provider/style'; import _LocaleProvider from 'antd/lib/locale-provider'; import 'babel-polyfill'; import...

- [ ] I have searched the [issues](https://github.com/ant-design/ant-design-mobile/issues) of this repository and believe that this is not a duplicate. ### Version 2.2.3 ### Environment node - v10.0.0 ### Reproduction link...

``` onPopupVisibleChange(popupVisible) { this.setState({ popupVisible }) } ``` 里面的 mobile-trigger 点击后展开菜单。然后再点击后应该关闭的。但是却重复触发了事件,导致关闭后立刻打开了。 感觉像是点击穿透问题, fastclick 也用了,也无效。 ``` document.addEventListener('DOMContentLoaded', () => FastClick.attach(document.body), false) ```