I have a value stored as <b> supposed to be bold </b> in mysql.
while fetching through php I used nearly all html entity related functions but no avail
//will be returned as json for vue
$item ['value'] = $fetched_data;
in vue template I use like this
{{$value}}
and it gives me as html tags where I am supposed to print the bolded text, anything should I do in PHP or Vue to make this happen?