mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
270 B
JavaScript
17 lines
270 B
JavaScript
import Vue from 'vue'
|
|
import VTooltip from 'v-tooltip'
|
|
|
|
Vue.use(VTooltip, {
|
|
defaultDelay: {
|
|
show: 500,
|
|
hide: 50
|
|
},
|
|
defaultOffset: 2,
|
|
defaultPopperOptions: {
|
|
removeOnDestroy: true
|
|
},
|
|
popover: {
|
|
// defaultArrowClass: 'm-dropdown__arrow'
|
|
}
|
|
})
|