I am trying to put some HTML (even <b> tags) in Bootstrap-Vue Input fields.
<template>
<b-form-input></b-form-input>
<datalist id="my-list-id">
<option v-for="size in sizes">{{ size }}</option>
</datalist>
</template>
...
new Vue({
el: '#vue',
data: {
sizes: ['Manual Option', '<b>bold</b>first', 'Medium', 'Large', 'Extra Large'],
However, I was unable to find out how to use the HTML members, instead of plain-text members in the selection?
