Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance, I have this following code in a SFC
<span :class="['class1','class2',{'class3':!modelValue}]">{{ $i18n('i18n-key')}}</span>
After formatting the SFC, I expect it to be
<span :class="['class1', 'class2', { 'class3': !modelValue }]">{{ $i18n('i18n-key') }}</span>
In previous versions of Volar, formatting worked without problems. However, in recent versions (replicated in v1.0.8), this no longer works.
The text was updated successfully, but these errors were encountered:
415a4f7
No branches or pull requests
For instance, I have this following code in a SFC
After formatting the SFC, I expect it to be
In previous versions of Volar, formatting worked without problems. However, in recent versions (replicated in v1.0.8), this no longer works.
The text was updated successfully, but these errors were encountered: