[Vuejs]-How to display strings with angle brackets in Vue?

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

Leave a comment