Requirement: To decode data of utf8 K& #2446;Ler which is possible by v-html attribute in vuejs
Problem: Don't know how to pass displayFullUserName to data-tooltip which holds value Armin K& #2446;Ler so that it will reflect Armin Koler in grey layout.
Finding The below image shows gibberish data K& #2446;Ler, since it is not rendered by v-html. I have a data-tooltip property which shown below as grey over tooltip view. Now, I don't know how to fix this as actual text rendered above was by v-html tag.
 <label
   v-bind:data-tooltip="displayFullUserName"
   v-html="displayFullUserName"
 />
computed() {
return this.displayFullUserName;
}

