9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import type { FunctionPlugin } from 'vue'
|
|
import { VueQueryPlugin } from '@tanstack/vue-query'
|
|
|
|
export default {
|
|
install(app) {
|
|
app.use(VueQueryPlugin, {})
|
|
},
|
|
} as FunctionPlugin
|