2020-01-29 17:40:15 +01:00
|
|
|
export const strict = false
|
2020-05-28 10:15:07 +02:00
|
|
|
|
|
|
|
export const state = () => ({
|
|
|
|
showErrorAlert: false,
|
|
|
|
ErrorAlertMessage: ''
|
|
|
|
})
|
|
|
|
|
|
|
|
export const mutations = {
|
|
|
|
UPDATE_SHOW_ERROR_ALERT (state, show) {
|
|
|
|
state.showErrorAlert = show
|
|
|
|
},
|
|
|
|
UPDATE_ERROR_AERT_MESSAGE (state, message) {
|
|
|
|
state.ErrorAlertMessage = message
|
|
|
|
}
|
|
|
|
}
|