I have some data that includes html tags in the state of vuex, but I want the html tags can be parsed as normal html tags, not to escape them. How can I achieve this task. For example,
export default {
state: {
someHtml: '<a href="">This is a a tag.</a>'
}
}
this.$store.state.someHtml can be displayed as a html link.