Skip to content Skip to sidebar Skip to footer

Vuejs Createelement() Insert Dynamic Html

I building a component to convert all icons to SVG. So, at the end of my code I have this: return createElement('i', 'CODE' ) Where is t

Solution 1:

I found a solution!

return createElement('i', {
          domProps: {
            innerHTML: this.data
          }
        }
      )

Post a Comment for "Vuejs Createelement() Insert Dynamic Html"