Merge remote-tracking branch 'upstream/develop' into upstream-develop

# Conflicts:
#	backend/main.go
#	frontend/.env.development
This commit is contained in:
陈景阳
2020-01-28 15:51:09 +08:00
22 changed files with 305 additions and 88 deletions

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