Liu

Results 17 comments of Liu

Any news? I think this feature is great

有个问题,假如传入的方法是异步的,上述的节流方法是没用的啊,考虑把`fn.apply(this, arguments)`这一句放在setTimeout外面是不是会好一点?就像下面这样。 ```javascript const myThrottle2 = function (func, wait = 50) { var canRun = true return function (...args) { if (!canRun) { return } else { canRun = false...

```javascript const arr = [ [1, 2, 2], [3, 4, 5, 5], [6, 7, 8, 9, [11, 12, [12, 13, [14] ] ] ], 10] function flat (arr) { function...

Also encountered this problem,any news?

通过 Fork 该仓库我写了一个能兼容上述情况的组件 @custom-lb-ui/v-contextmenu-transform,添加了一个新组件 v-contextmenu-submenu-transform,可以供有需要的参考。 可以看下面这个在线 demo https://codesandbox.io/s/contextmenusubmenutransformdemo-g5h2c

cordova build android Error: cmd: Command failed with exit code 1 Error output: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':transformClassesWithDexForDebug'. > com.android.build.api.transform.TransformException:...

请问 sourceMap 的映射问题有解决方案吗?目前我看到的对应行数还是错的。 @NullYing 谢谢。

同遇到这个问题,请问有解决方法吗

any news? I want to use the { type: 'var' } pattern of the webpack federal module library, why can't I find it inside this plugin?

same problem, any progress?