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.
I have the following file and it's called test.vue
I run
prettier test.vueand I get:But I do :Prettier in vim and I get:
which is actually syntax error.