Advertisement
Guest User

Untitled

a guest
Feb 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <script>
  2. export default {
  3. name: "register",
  4. data :function () {
  5. return {
  6. dataUser:{
  7. login:'',
  8. email:'',
  9. password:'',
  10. repeat_password:' '
  11. },
  12. valid: false,
  13. loginRules: [
  14. v => !!v || 'Name is required',
  15. v => v.length <= 5 || 'Name must be less than 5 characters'
  16. ],
  17. emailRules: [
  18. v => !!v || 'E-mail is required',
  19. v => /.+@.+/.test(v) || 'E-mail must be valid'
  20. ]
  21. }
  22. }
  23. }
  24. </script>
  25.  
  26. <style scoped>
  27.  
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement