Thorsten Lünborg
Thorsten Lünborg
This would have an impact on eslint-plugin-vue in a way, as the presets offered by this plugin are named after the current priorities naming scheme. So if we merge this,...
To clarify: - Right now, rules that we document as "essential" in the style guide are found in the `essential` preset (amongst others that are not part of the style...
I'll remove it from the docs for now. I don't have time to write a nuxt integration now, haven't figured out how it works for v3 yet. PR welcome for...
I think this is mostly an issue with the docs. The wrapper slot is intended to wrap each item before rendering them. For a single transition group, the default slot...
Hm. Have to take another look this weekend. I thought I made it work this morning but can't reproduce it right now. Will be off until tomorrow, so have another...
You're probably both "right". The change that you link to, @xiaodemen, was done because it was expected that the check for "checked" should no longer be necessary after we did...
It seems that's fixable. someone already posted a fixed fork for `babel-plugin-transform-vue-jsx` in the issue you linked to, and it looks pretty simple: https://github.com/wietseva/babel-plugin-transform-vue-jsx/commit/1b9ebada45d7a365e7ba3803cdd22dce460bee6c
/cc @posva this should solve your problem in pinia.
Good call, will do.
Here, we create the `legacyLeaveFromClass` only if there isn't a custom classname set. https://github.com/vuejs/core/blob/6f1b36d0a8e2ec4f7c8f8f082056c6c32226da92/packages/runtime-dom/src/components/Transition.ts#L152-L155 as OP has set one, it stays `undefined` But here, we try and apply this (undefined)...