You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to version 0.12.0 (and above), auto-completion within Vue transition components is no longer functioning as expected. This includes attributes such as enter-active-class, leave-active-class, enter-from-class, and leave-to-class.
I attempted various configurations in the .vscode/settings.json file, including different regex patterns for the tailwindCSS.experimental.classRegex setting, but the issue persists.
I tested with a simpler regex pattern: "\\-class\\s*=\\s*\"([^\"]*)\", which still did not yield any results.
Disabled other extensions that may conflict, including Vetur, but auto-completion remains inactive.
Created a new Vue project with a minimal setup to eliminate project-specific issues, but the problem persists in this clean environment.
Downgraded to version 0.10.5 of the extension, which restored the expected functionality.
Thank you.
The text was updated successfully, but these errors were encountered:
After upgrading to version 0.12.0 (and above), auto-completion within Vue transition components is no longer functioning as expected. This includes attributes such as enter-active-class, leave-active-class, enter-from-class, and leave-to-class.
In version 0.10.5, the following regex pattern worked for class auto-completion:
.vscode/settings.json
file, including different regex patterns for thetailwindCSS.experimental.classRegex
setting, but the issue persists."\\-class\\s*=\\s*\"([^\"]*)\"
, which still did not yield any results.Thank you.
The text was updated successfully, but these errors were encountered: