mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
22 lines
243 B
JavaScript
22 lines
243 B
JavaScript
const state = {
|
|
version: ''
|
|
}
|
|
|
|
const getters = {}
|
|
|
|
const mutations = {
|
|
SET_VERSION: (state, value) => {
|
|
state.version = value
|
|
}
|
|
}
|
|
|
|
const actions = {}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
mutations,
|
|
actions
|
|
}
|