summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-16 22:03:38 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-04-16 22:05:58 +0300
commit1be6b41e1be3d2316abcb5dec6968383b5a6f856 (patch)
tree0d235faf964e1bbf888689737fb4eefe250a44dd /src/main.js
parentedb9e852fd43ec9de857a91675113c0fcc4e8414 (diff)
downloadwebui-vue-1be6b41e1be3d2316abcb5dec6968383b5a6f856.tar.xz
Create accessible InfoTooltip Component
Adds a global reusable component that will display the info icon with accesible markup. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I5f7ee4a45e19ce851b3eff705d722517db07c0bf
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index 7117c54d..4b0722e2 100644
--- a/src/main.js
+++ b/src/main.js
@@ -23,7 +23,8 @@ import {
NavbarPlugin,
NavPlugin,
TablePlugin,
- ToastPlugin
+ ToastPlugin,
+ TooltipPlugin
} from 'bootstrap-vue';
import Vuelidate from 'vuelidate';
import i18n from './i18n';
@@ -85,6 +86,7 @@ Vue.use(NavbarPlugin);
Vue.use(NavPlugin);
Vue.use(TablePlugin);
Vue.use(ToastPlugin);
+Vue.use(TooltipPlugin);
Vue.use(Vuelidate);
new Vue({