diff options
Diffstat (limited to 'docs/guide')
-rw-r--r-- | docs/guide/components/tooltip.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/guide/components/tooltip.md b/docs/guide/components/tooltip.md new file mode 100644 index 00000000..ebc1a16d --- /dev/null +++ b/docs/guide/components/tooltip.md @@ -0,0 +1,15 @@ +# InfoTooltip + +The `InfoTooltip` is a custom component that uses a Bootstrap-vue tooltip with an info icon. This custom component requires a title property containing the tooltip text to display to the user. + +[Read more about the Bootstrap-vue tooltip component](https://bootstrap-vue.org/docs/components/tooltip) + +## Example + +```vue +<info-tooltip + :title="Title" //should be translated +/> +``` + + |