Login.vue 553 B

12345678910111213141516171819202122232425262728
  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. count: 0
  6. }
  7. }
  8. }
  9. </script>
  10. <template class="login">
  11. <div class="login">
  12. <h4 style="color:orange;">登录页面</h4>
  13. <label>用户名</label><input type="text" placeholder="请输入用户名"/><br/>
  14. <label>密码</label><input type="password" placeholder="请输入密码"/><br/>
  15. <button>登录</button>
  16. </div>
  17. </template>
  18. <style scoped>
  19. .login{
  20. width:80%;
  21. height:50%;
  22. /* display: flex; */
  23. justify-content: center;
  24. align-items: center;
  25. background-color: bisque;
  26. }
  27. </style>