opnform-host-nginx/resources/js/store/modules/open/errors.js

28 lines
328 B
JavaScript
Raw Normal View History

2022-09-20 21:59:52 +02:00
import Vue from 'vue'
export const namespaced = true
// state
export const state = {
content: null
}
// getters
export const getters = {
}
// mutations
export const mutations = {
set (state, error) {
state.content = error
},
clear (state) {
state.content = null
}
}
// actions
export const actions = {
}