I try to use a popover in a child component, but it behaves strangely . It flashes (activate / deactivate ) on each 2ms like a flash.
<statistic-row :popover_text="'Text example.'" /> //this if from parent
<template>
<b-row>
<b-col xl="4" md="4" sm="4" xs="4">
<h5>
<span v-show="popover_text" v-b-popover.hover.top="popover_text">
<i class="far fa-question-circle"></i>
</span>
</h5>
</b-col>
</b-row>
</template>
<script>
export default {
props: ["popover_text"]
};
</script>