I'm trying to use bootstrap-vue modal to show details from a collection of items.
What I want is to pass data to modal to show a simple message.
I first loop over recordset to show button.
<ul>
  <li v-for="item in items">{{ item.first_name }} 
      <b-button size="sm" v-b-modal="'myModal'" user="'item'">
        Saluta {{item.first_name}}
      </b-button> 
  </li>
</ul>
And then display name in modal:
<b-modal id="myModal" :user="'user'">
  Hello {{user}}!
</b-modal>
Here's my fiddle https://jsfiddle.net/bptLavov/259/
 
     
     
    