fixed 版本无法显示问题

This commit is contained in:
marvzhang
2020-01-28 09:52:57 +08:00
parent 6d98e719f3
commit 1317f8d618
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
}