1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-13 00:38:06 +00:00
bramw_baserow/web-frontend/modules/database/plugin.js

7 lines
272 B
JavaScript

import { DatabaseApplication } from '@/modules/database/application'
import tableStore from '@/modules/database/store/table'
export default ({ store }) => {
store.registerModule('table', tableStore)
store.dispatch('application/register', new DatabaseApplication())
}