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
{{ message }}
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
Template string <element :disabled="disabled"></element> won't be transformed to <element :disabled></element>
Actual Behaviour
Template string <element :disabled="disabled"></element> gets transformed to <element :disabled></element> since the options passed to the plugin (see example above) aren't actually applied.
The text was updated successfully, but these errors were encountered:
Example Plugin Usage
Expected Behaviour
Template string
<element :disabled="disabled"></element>
won't be transformed to<element :disabled></element>
Actual Behaviour
Template string
<element :disabled="disabled"></element>
gets transformed to<element :disabled></element>
since the options passed to the plugin (see example above) aren't actually applied.The text was updated successfully, but these errors were encountered: