工业聚
工业聚
@ChieveiT Great!
@drcmda It seems like the constructor of super class was not invoked, so `this.$cache` is `undefined`, read `parentContext` property from `undefined` would throw error.
Which browser did you use? We should emulate mobile device for enabling tap event in some browsers of PC.
Which version of Material-UI did you use? In this [demo](https://lucifier129.github.io/material-ui/build/), it works well. Click [here](https://github.com/Lucifier129/material-ui/commit/709e9cc7988d586bf247faab37f81c4dc353878e) to see the commit of code change.
过场动画用的是 css transition,安卓哪个版本的呀? 手头没有安卓机,比较难测试。如果可以提个 pull request 解决这个问题,就更好了:)
Thanks for the feedback. It is very useful.
Here is a workaround use nature javascript. ```javascript const elems = document.querySelectorAll('.test') const pulls = Array.from(elems).map(elem => { let instance = new PullElement({ ...options, target: elem }) instance.init() return instance...
human readable data tree => react component tree => dom tree human readable data tree => vue component tree => dom tree react 的 virtuail-dom 本质是 json 数据,有了这层隔离,映射到 dom \...
说得好。思路很对。
支持多个参数的意义不大,多个参数可以组织成一个数组或者对象形式。 用例里在 render 方法里 bind(this) 也是一种反模式。 最好保持单参数的简单性。