api-client/plugins/v-tippy.js

10 lines
197 B
JavaScript
Raw Normal View History

2021-07-02 05:01:29 +00:00
import Vue from "vue"
import VueTippy, { TippyComponent } from "vue-tippy"
2021-07-02 16:30:08 +00:00
Vue.use(VueTippy, {
2021-08-06 16:10:26 +00:00
a11y: false,
2021-07-02 16:30:08 +00:00
animateFill: false,
2021-08-06 16:10:26 +00:00
arrowType: "round",
2021-07-02 16:30:08 +00:00
})
2021-07-02 05:01:29 +00:00
Vue.component("Tippy", TippyComponent)