[Vuejs]-Vue.js: [Vue warn]: Error compiling template: + in laravel blade file

0👍

To skip Vue from compiling data containing double curly braces ({{some text}}) for an element, you could use v-pre. This will display raw mustache tags :

<span v-pre>[{{ auth()->user()->first_name }}]</span>

More : v-pre

Leave a comment