I have a code here:
<b-form-input v-model="search" placeholder="Search"></b-form-input>
<b-form-checkbox-group v-model="selected" :options="options" stacked></b-form-checkbox-group>
search: null,
selected: [],
options: [
{
value: 'apple',
text: 'Apple'
},
{
value: 'orange',
text: 'Orange'
},
{
value: 'grape',
text: 'Grape'
}
],
I want to create a simple search regarding the code above.
From this:

To this:

I am using https://bootstrap-vue.org/docs/components/form-checkbox