vuestrap-base-components
Version:
Web components that extend Bootstrap 4.
11 lines (9 loc) • 358 B
HTML
<!-- tooltip with a text -->
<vs-popover title="title" text="Lorem ipsum dolor." position="top">
<button class="btn">popover top</button>
</vs-popover>
<!-- tooltip with an html content -->
<vs-popover title="title" position="right">
<button class="btn">popover right (html)</button>
<em slot="content">Lorem ipsum dolor.</em>
</vs-popover>