You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
631 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <template>
  2. <v-app id="inspire">
  3. <v-main>
  4. <v-container class="fill-height" fluid>
  5. <v-row align="center" justify="center">
  6. <v-col cols="12" sm="8" md="4">
  7. <form-login
  8. :login="authenticateUser"
  9. />
  10. </v-col>
  11. </v-row>
  12. </v-container>
  13. </v-main>
  14. </v-app>
  15. </template>
  16. <script lang="ts">
  17. import Vue from 'vue'
  18. import { mapActions } from 'vuex'
  19. import FormLogin from '@/components/auth/FormLogin.vue'
  20. export default Vue.extend({
  21. components: {
  22. FormLogin
  23. },
  24. methods: {
  25. ...mapActions('auth', ['authenticateUser'])
  26. }
  27. })
  28. </script>