ffplayout/plugins/lodash.client.ts

18 lines
327 B
TypeScript
Raw Normal View History

2023-06-28 05:01:17 -04:00
import lodash from 'lodash'
2024-04-16 12:13:28 -04:00
import type { LoDashStatic } from 'lodash'
2023-06-28 05:01:17 -04:00
declare module '#app' {
interface NuxtApp {
$_: LoDashStatic;
}
}
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$_: LoDashStatic;
}
}
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.provide('_', lodash)
})