mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
10 lines
133 B
JavaScript
10 lines
133 B
JavaScript
export const state = () => ({
|
|
error: ""
|
|
});
|
|
|
|
export const mutations = {
|
|
setError(state, error) {
|
|
state.error = error;
|
|
}
|
|
};
|