Javascript – h() render function in Vue returning [object Object]
I'm trying to display icon when condition is passed and for that I'm using theme icon Script Code <script setup> import { h } from 'vue' const props = defineProps({ itemDetail: Object }); const passedIcon = h('i', {class: 'bx bxs-check-circle'});…