Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. update(id, color) {
  2. this.mute = true;
  3. window.axios.put(`/api/cruds/${id}`, { color }).then(() => {
  4. this.cruds.find(crud => crud.id === id).color = color;
  5. this.mute = false;
  6. });
  7. },
Add Comment
Please, Sign In to add comment