ffplayout/store/index.js
2020-09-10 16:29:19 +02:00

16 lines
329 B
JavaScript

export const strict = false
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
}
}