Whalebird-desktop-client-ma.../src/renderer/components/Login.vue

56 lines
1.0 KiB
Vue
Raw Normal View History

2018-03-08 09:41:39 +01:00
<template>
<el-container id="login">
<el-header>
<el-row>
<el-col :span="24" class="close">
2022-04-19 14:05:32 +02:00
<el-button type="text" @click="close" class="close-button">
<font-awesome-icon icon="xmark" />
</el-button>
</el-col>
</el-row>
</el-header>
<el-container>
<div></div>
<login-form></login-form>
</el-container>
</el-container>
2018-03-08 09:41:39 +01:00
</template>
<script>
2018-03-10 14:44:15 +01:00
import LoginForm from './Login/LoginForm'
2018-03-08 15:08:33 +01:00
import { mapState } from 'vuex'
2018-03-08 09:41:39 +01:00
export default {
name: 'login',
2018-03-22 02:46:17 +01:00
components: { LoginForm },
2018-03-08 15:08:33 +01:00
computed: {
...mapState({
2022-04-18 16:54:50 +02:00
page: state => state.Login.page
})
2018-03-08 15:08:33 +01:00
},
methods: {
close() {
2018-03-22 02:46:17 +01:00
this.$store.dispatch('Login/pageBack')
return this.$router.push({ path: '/', query: { redirect: 'home' } })
2022-04-18 16:54:50 +02:00
}
}
2018-03-08 09:41:39 +01:00
}
</script>
<style lang="scss" scoped>
#login {
2018-03-10 14:44:15 +01:00
background-color: #292f3f;
color: #ffffff;
2018-03-08 09:41:39 +01:00
text-align: center;
2018-03-14 08:12:44 +01:00
min-height: 100%;
2018-03-08 15:08:33 +01:00
.close {
text-align: right;
.close-button {
font-size: 24px;
}
}
2018-03-08 09:41:39 +01:00
}
</style>