86driver

Results 11 comments of 86driver

> @86driver 有遇到什么困难吗 解决方式可否分享一下 😺 问题是报window undefined 在引入的时候判断一下就ok了: 如下 const At = process.browser ? require("vue-at") : undefined; 但是我现在碰到一个问题, 就是 @at方法 在我键入@键的时候不执行, 而是点击弹出的内容之后执行, 这个问题是我操作方法不对吗? 我尝试自己全局监听键盘按下, 但是有一个问题是 中文输入法的情况下 keyCode总是229 请问有没有什么办法解决我这个问题, 急 ~~

我找到我按@不触发的原因是 if (!keep && chunk.length > 0) { this.$emit("at", chunk); } 这句代码 chunk.length条件不符合 我该怎么做- -

> i I'd like to use vue-at with nuxt, how did you solve the window undefined proble maybe you can use require instead of import like this: const At =...

or you can clone vue-at at your own project and delete the useless code. the error maybe in vue.runtime.js&&vue.runtime.min.js

found this pronblem. becaseof third package coveraged updateLocale. so any solution to solve this problem?

means that if a css properties has supported by most browser, cli will not add any prefix? another, if i add browserlist options manually, it will effect by my option?...

if my browser is firefox 18.x. it will not support flex-grow. Due to the above reasons, i think cli shoud add default browserslist in package.json.

```js if(typeof then === 'function'){ // newValue 为新产生的 Promise,此时resolve为上个 promise 的resolve //相当于调用了新产生 Promise 的then方法,注入了上个 promise 的resolve 为其回调 then.call(newValue,resolve, reject) return } ``` then.call有点不理解, 我试了 直接 then(resolve) 结果也是一样的。 请问为什么这里要加一个 call来执行呢?