fixed 版本无法显示问题

This commit is contained in:
marvzhang
2020-01-28 09:52:57 +08:00
parent 03d5e19140
commit b008b95172
5 changed files with 33 additions and 9 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
}