daolanfler

Results 7 comments of daolanfler

最后面加上 `button.click`,如果是冒泡是作为 macrotask 那应该是 button => promise => app,但实际上却是 button => app => promise。[链接](https://codepen.io/daolanfler/pen/eoXxWP) vue-clickaway 给的[参考链接](https://jakearchibald.com/2015/tasks-microtasks-queues-and-schedules/)说: > Previously, this meant that microtasks ran between listener callbacks, but .click() causes the...

package.json 设置 `"mpvue-loader": "~1.0.13",` mpvue-loader 锁定一下版本

If you use vscode's shortcut (alt + mouse click) in insert mode to do multi-cusor editing, esc will just back to normal mode with multi-cursor. Not sure why this inconsistent...

for renaming, F2 works well. ( I'm using volar )

same here, I'm using `.ts` files, from the source code it seems that `parseAST` is only implemented for [json](https://github.com/lokalise/i18n-ally/blob/66313b99f1a1052dcc129f7474e99078974fed7d/src/parsers/json.ts#L31) and yaml. For [ecmascript](https://github.com/lokalise/i18n-ally/blob/main/src/parsers/ecmascript.ts), there is neither custom navigateToKey nor custom...

same problem, I see the [gitbook doc ](https://docs.gitbook.com/v2-changes/important-differences#plugins) says that plugins system seems not to be surported any more.

我也遇到了这个问题,在我的场景下,不是 vuedraggable 的问题。 `isFunction` 是 vue3 的 shared utils ,我们项目用了 autoimports ,比如 vue 的 createApp 就会 auto import. 我在 `src/main.ts` 最上面加上了 ```ts import { createApp } from 'vue'; ``` 就可以了,猜想可能是因为...