mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-28 22:42:26 +00:00
18 lines
240 B
JavaScript
18 lines
240 B
JavaScript
export const state = () => ({
|
|
automationId: null,
|
|
loading: false,
|
|
})
|
|
|
|
export const mutations = {}
|
|
|
|
export const actions = {}
|
|
|
|
export const getters = {}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
}
|