Reinier Kaper
Reinier Kaper
I have no moments on my test device, and when I query them the framework crashes. It seems like it tries to enumerate over something that should be empty to...
The docs state that `prepareForSizeDisplay` takes `Rect(width, height)` but that's not a thing in JavaScript. I tried supplying an Object instead but that also doesn't work. Can the docs be...
### Basic info: - **Node.js version:** 10.14.2 - **jsdom version:** 14.1 ### Minimal reproduction case ```js const { JSDOM } = require("jsdom"); const options = {; const dom = new...
### Version 4.0.15 ### Reproduction link [stackblitz.com](https://stackblitz.com/edit/vue3-vue-router-meta-layout-z1a2yv?file=src/components/AppLink.vue) ### Steps to reproduce There's an issue with reactivity in the template when extending the routerlink as per example from the docs: https://router.vuejs.org/guide/advanced/extending-router-link.html...
I'm using ``` "phpfmt.passes": [ "AlignPHPCode" ] ``` In order to enable formatting in PHP/HTML mixes, but enabling that adds indentation inside of PHP blocks like this: 
I have this odd issue, where the formatter will run correctly the first time, but any subsequent format will simply do nothing. Here's the error output: ``` 8/15/2018, 9:39:41 AM...
The docs state that you can supply options, but the Typing says you can't: `removeAll: () => void`
### Current behavior When I run `npm run cypress:open-ct` (or `run-ct`), I get an error `[43901:1203/085557.424470:ERROR:node_bindings.cc(276)] Most NODE_OPTIONs are not supported in packaged apps. See documentation for more details.` This...
Currently you can't make queries/mutations accept refs as inputs, which forces you to use something like `const { error, refresh: submit } = await useAsyncData('updateAccount', () => GqlUpdateAccount({}))`. If we...
When using `useGqlHeaders` or `useGqlToken`, I would assume that the passed values can be refs and that the headers/tokens would update on subsequent requests if the refs change. A simple...