mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
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
30 lines
593 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">
|
|
<login-form
|
|
:login="authenticateUser"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions } from 'vuex'
|
|
import LoginForm from '@/components/organisms/auth/LoginForm'
|
|
|
|
export default {
|
|
components: {
|
|
LoginForm
|
|
},
|
|
|
|
methods: {
|
|
...mapActions('auth', ['authenticateUser'])
|
|
}
|
|
}
|
|
</script>
|