mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
Merge remote-tracking branch 'upstream/develop' into upstream-develop
# Conflicts: # backend/main.go # frontend/.env.development
This commit is contained in:
21
frontend/src/store/modules/version.js
Normal file
21
frontend/src/store/modules/version.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const state = {
|
||||
version: ''
|
||||
}
|
||||
|
||||
const getters = {}
|
||||
|
||||
const mutations = {
|
||||
SET_VERSION: (state, value) => {
|
||||
state.version = value
|
||||
}
|
||||
}
|
||||
|
||||
const actions = {}
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
mutations,
|
||||
actions
|
||||
}
|
||||
Reference in New Issue
Block a user