a6a4ceee86
* fixing up typing * better dynamic loader mechanism * buildReqLoaders cleanup * added caching to loaders * ensuring all loaders are async * fe2 plugins error handling fix * feat(shared): true-myth result structures & other auth policy improvements * moving workspaceCore loaders to correct place
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import VueTippy from 'vue-tippy'
|
|
import 'tippy.js/dist/tippy.css'
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.vueApp.use(VueTippy, {
|
|
defaultProps: {
|
|
arrow: true
|
|
},
|
|
flipDuration: 0
|
|
})
|
|
})
|