mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 11:26:41 +00:00
9 lines
328 B
TypeScript
9 lines
328 B
TypeScript
export default defineNuxtPlugin(function (nuxtApp) {
|
|
const smartsheetStoreEventBus = useEventBus<SmartsheetStoreEvents>(EventBusEnum.SmartsheetStore)
|
|
const realtimeEventBus = useEventBus<SmartsheetStoreEvents>(EventBusEnum.Realtime)
|
|
nuxtApp.provide('eventBus', {
|
|
smartsheetStoreEventBus,
|
|
realtimeEventBus,
|
|
})
|
|
})
|