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.

29 lines
605 B

5 years ago
5 years ago
2 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 :login="authenticateUser" />
  8. </v-col>
  9. </v-row>
  10. </v-container>
  11. </v-main>
  12. </v-app>
  13. </template>
  14. <script lang="ts">
  15. import Vue from 'vue'
  16. import { mapActions } from 'vuex'
  17. import FormLogin from '@/components/auth/FormLogin.vue'
  18. export default Vue.extend({
  19. components: {
  20. FormLogin
  21. },
  22. methods: {
  23. ...mapActions('auth', ['authenticateUser'])
  24. }
  25. })
  26. </script>