Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. mutactions: {
  2. async loadBooks({ state }) {
  3. state.loading += 1;
  4. const response = await get('/api/books');
  5. state.books = response.data.books;
  6. state.loading -= 1;
  7. },
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement