freakzlike
freakzlike
The same thing is happing, when you use `disable: true` on an option. Backspace should not remove this either
Thanks for your work. I had the same idea of adding a callback to control inline of assets (https://github.com/vitejs/vite/issues/15343). However in my use case I need this for library mode....
I fixed my error by setting the `parserOptions.parser` inside the `.eslintrc.js`: ```js parserOptions: { parser: '@typescript-eslint/parser' }, ```
I fixed my error by setting the `parserOptions.parser` inside the `.eslintrc.js`: ```js parserOptions: { parser: '@typescript-eslint/parser' }, ```
Using one `trigger` function for both cases might not be possible. I like the idea of having `wrapper.emit()`. Feels better integrated instead of `wrapper.vm.$emit()`. Not sure if we might get...
You can define your own way how stubs are created by a plugin (`plugins.createStubs`). https://test-utils.vuejs.org/guide/extending-vtu/plugins.html#stubs-plugin
Hi @jrutila, Thanks for the PR! But I don't feel comfortable adding this to VTU by default as this is nothing Vue does. Although isn't it possible to set `globalThis`...
I currently have a util to stub a component but render the slots and also with slot data. Here I have a quick example: ```vue {{ toolbar ? 'Header in...