mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 02:16:48 +00:00
11 lines
483 B
TypeScript
11 lines
483 B
TypeScript
export default defineNuxtPlugin(function (nuxtApp) {
|
|
const smartsheetStoreEventBus = useEventBus<SmartsheetStoreEvents>(EventBusEnum.SmartsheetStore)
|
|
const realtimeBaseUserEventBus = useEventBus<SmartsheetStoreEvents>(EventBusEnum.RealtimeBaseUser)
|
|
const realtimeViewMetaEventBus = useEventBus<SmartsheetStoreEvents>(EventBusEnum.RealtimeViewMeta)
|
|
nuxtApp.provide('eventBus', {
|
|
smartsheetStoreEventBus,
|
|
realtimeBaseUserEventBus,
|
|
realtimeViewMetaEventBus,
|
|
})
|
|
})
|