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
I have the following file and it's called test.vue
<template>
<div>
<span>
{{ video.selected ? "This video is included in the charts" : "This video is not included in the charts" }}
</span>
</div>
</template>
I run prettier test.vue and I get:
<template>
<div>
<span>
{{
video.selected
? "This video is included in the charts"
: "This video is not included in the charts"
}}
</span>
</div>
</template>
But I do :Prettier in vim and I get:
<template>
<div>
<span>
{{ video.selected ? "This video is included in the charts" : "This video is not
included in the charts" }}
</span>
</div>
</template>
which is actually syntax error.
The text was updated successfully, but these errors were encountered:
I have the following file and it's called test.vue
I run
prettier test.vue
and I get:But I do :Prettier in vim and I get:
which is actually syntax error.
The text was updated successfully, but these errors were encountered: