mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
export const state = () => ({
|
|
loading: false
|
|
});
|
|
|
|
export const mutations = {
|
|
updateLoading(state) {
|
|
state.loading = !state.loading;
|
|
}
|
|
};
|