Skip to content

Popover component does not support slot for title reactivity

From the Bootstrap Vue documentation:

Popover title (text only, no HTML). If HTML or reactivity is required, use the title named slot

Currently, passing a slot titled as title does not get passed to b-popover. I'm thinking adding something like the following should take care of it:

<template slot="title">
  <slot name="title"></slot>
</template>
Edited by Adriel Santiago