0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-01 01:12:39 +00:00
VueTube/NUXT/store/search/index.js
2022-07-20 15:18:29 -04:00

8 lines
147 B
JavaScript

export const state = () => ({
loading: false,
});
export const mutations = {
setLoading(state, payload) {
state.loading = payload;
},
};