mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 13:13:41 +09:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
import { plugin as VueTippy } from 'vue-tippy'
|
|
|
|
import { definePlugin } from '/@src/utils/plugins'
|
|
|
|
export default definePlugin(({ app }) => {
|
|
app.use(VueTippy, {
|
|
component: 'Tippy',
|
|
defaultProps: {
|
|
theme: 'light',
|
|
},
|
|
})
|
|
})
|