登录页

This commit is contained in:
asd
2020-09-25 15:23:51 +08:00
parent f7dd399ec1
commit 84e6700dfc
9 changed files with 132 additions and 18 deletions

View File

@@ -0,0 +1,40 @@
<template>
<div class="logintab">
<div class="tab">手机号登录</div>
<div class="tab ">账号密码登录</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "LoginTab",
components: {},
setup() {
const selected: number =1
return {
selected
};
},
});
</script>
<style lang="scss" scoped>
.logintab{
display: flex;
.tab{
width: 100px;
height: 28px;
border-radius: 14px;
font-weight: bold;
text-align: center;
font-size: 11px;
line-height: 28px;
}
.tab1{
background: #08AE98;
color: white;
}
}
</style>