1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-28 22:42:26 +00:00
bramw_baserow/web-frontend/modules/automation/store/automationApplication.js
2025-03-27 16:07:22 +00:00

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,
}