Guest User

Untitled

a guest
Mar 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <template>
  2. <div class="container">
  3. <form>
  4. <label for="username">Username:</label>
  5. <input name="username" type="text">
  6. <label for="password">Password:</label>
  7. <input name="password" type="password">
  8. <button v-click="login">Log In</button>
  9. </form>
  10. <p>{{ errorMessage }}</p>
  11. </div>
  12. </template>
  13.  
  14. <script>
  15. export default {
  16. name: 'LoginView',
  17. data() {
  18. return {
  19. username: '',
  20. password: ''
  21. }
  22. },
  23. methods: {
  24. login() {
  25. this.$emit('userCredentials', {
  26. 'username': '',
  27. 'password': ''
  28. });
  29. }
  30. }
  31. }
  32. </script>
Add Comment
Please, Sign In to add comment