How can I convert special characters (numberic) to symbols in my Vue template?
For instance I have this JSON data:
[{"id":"post91","slug":null,"title":"Breakfast & Tea"}]
How can I convert Breakfast & Tea
to Breakfast & Tea
?
My Vue template:
<h3 class="heading">{{ item.title }}</h3>
Any ideas?
The best option is using
v-html
actually:No need of any other libs.
It's easier to use a library like he for this:
Here's the JSFiddle: https://jsfiddle.net/86k1ge4b/