ffplayout/plugins/lodash.client.ts
2023-06-28 11:01:17 +02:00

18 lines
322 B
TypeScript

import lodash from 'lodash'
import { LoDashStatic } from 'lodash'
declare module '#app' {
interface NuxtApp {
$_: LoDashStatic;
}
}
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$_: LoDashStatic;
}
}
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.provide('_', lodash)
})