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
- [Vuejs]-Is there any way to mount function in sidedrawer?
- [Vuejs]-Nuxt Auth Module – save JWT in Vuex store
Source:stackexchange.com