diff options
Diffstat (limited to 'store/index.js')
-rw-r--r-- | store/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/store/index.js b/store/index.js index eabe2e5..a91e3a7 100644 --- a/store/index.js +++ b/store/index.js @@ -3,8 +3,8 @@ export const state = () => ({ }); export const getters = { - animation: (state) => { - return state.loading ? "animate-none" : "animate-spin"; + isLoading: (state) => { + return state.loading; }, }; export const mutations = { |