[Vuejs]-VueJS can't render this text

1👍

You can avoid the text being interpreted as Vue template syntax by using v-pre:

<div v-pre class="content">
    {{ $project->description }}
</div>

https://v2.vuejs.org/v2/api/#v-pre

Leave a comment