i want to change Vue tooltip text on button click?
- Tooltip text before click: copy text
- Tooltip text after click: text copied
And when hover again it should show "copy text" again until i click again to change tooltip text.
<b-button variant="primary" id="copy">
click here
</b-button>
<b-tooltip target="copy">
copy text
</b-tooltip>
Note: I used Bootstrap-Vue for this tooltip.