1๐
โ
I see you went with the suggestion of using >hello<
. Which is fine, I just wanted to share another method in case someone else stumbles upon this question.
<template>
<div>{{ hello }}</div>
</template>
<script>
export default {
data() {
return {
hello: "<hello>"
};
},
};
</script>
๐คT. Short
Source:stackexchange.com