Files
crawlab/frontend/src/store/modules/version.js
2020-01-28 09:52:57 +08:00

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
}