1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-09-05 16:59:47 +08:00

Update errorLog.js

This commit is contained in:
toruksmakto 2019-05-12 02:31:24 +08:00 committed by GitHub
parent d29330eaf6
commit 65b9749695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,12 +5,18 @@ const state = {
const mutations = { const mutations = {
ADD_ERROR_LOG: (state, log) => { ADD_ERROR_LOG: (state, log) => {
state.logs.push(log) state.logs.push(log)
},
CLEAR_ERROR_LOG: (state) => {
state.logs.splice(0)
} }
} }
const actions = { const actions = {
addErrorLog({ commit }, log) { addErrorLog({ commit }, log) {
commit('ADD_ERROR_LOG', log) commit('ADD_ERROR_LOG', log)
},
clearErrorLog({ commit }) {
commit('CLEAR_ERROR_LOG')
} }
} }