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

<template>
<v-app id="inspire">
<v-main>
<v-container class="fill-height" fluid>
<v-row align="center" justify="center">
<v-col cols="12" sm="8" md="4">
<form-login
:login="authenticateUser"
/>
</v-col>
</v-row>
</v-container>
</v-main>
</v-app>
</template>
<script lang="ts">
import Vue from 'vue'
import { mapActions } from 'vuex'
import FormLogin from '@/components/auth/FormLogin.vue'
export default Vue.extend({
components: {
FormLogin
},
methods: {
...mapActions('auth', ['authenticateUser'])
}
})
</script>