I want to insert HTML tag inside map method in Vuejs. But it doesn't work with this way. The anchor tag is displayed as plain text.
<template v-if="category.sub_category.length > 0">
<td>
{{ category.sub_category
.map(
({ subcategory_name, sub_sub_category }) =>
subcategory_name + '<a href="" @click.prevent="showAssignModal(category)">' + `(${sub_sub_category.length})` + '</a>'
)
.join(', ') }}
</td>
</template>