Login.vue 524 B

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