Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. methods: {
  2. read() {
  3. ...
  4. },
  5. update(id, color) {
  6. window.axios.put(`/api/cruds/${id}`, { color }).then(() => {
  7. // Once AJAX resolves we can update the Crud with the new color
  8. this.cruds.find(crud => crud.id === id).color = color;
  9. });
  10. },
  11. ...
  12. }
Add Comment
Please, Sign In to add comment