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.

30 lines
593 B

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