Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. notifications: {
  2. successSave: {
  3. title: 'Success',
  4. message: 'Proceso correcto',
  5. type: 'success'
  6. },
  7. errorSave: {
  8. title: 'Error',
  9. message: 'Error en el proceso',
  10. type: 'error'
  11. }
  12. },
  13. methods: {
  14. submit: function() {
  15. if(success) {
  16. this.successSave();
  17. } else {
  18. this.errorSave();
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement