2021-05-29 23:58:28 +08:00

26 lines
368 B
Vue

<template>
<div class="page-login">
<PageTitle>{{$L('登录页面')}}</PageTitle>
</div>
</template>
<style lang="scss" scoped>
.page-login {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
}
</style>
<script>
export default {
data() {
return {}
}
}
</script>