Register.vue 800 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="register">
  3. <h4 style="color:orange;">注册页面</h4>
  4. <label>用户名</label><input type="text" placeholder="请输入用户名"/><br/>
  5. <label>密码</label><input type="password" placeholder="请输入密码"/><br/>
  6. <label>确认密码</label><input type="password" placeholder="确认密码"/><br/>
  7. <button>注册</button>
  8. </div>
  9. </template>
  10. <script type="module">
  11. export default {
  12. methods:{
  13. add_number(){
  14. }
  15. },
  16. setup(){
  17. console.log("about vue component setup");
  18. },
  19. mounted(el){
  20. console.log("about vue under mounted ---");
  21. }
  22. }
  23. </script>
  24. <style scoped>
  25. .register{
  26. width:80vw;
  27. height:50vh;
  28. display: flex;
  29. justify-content: center;
  30. /* align-items: center; */
  31. background-color: aqua;
  32. backdrop-filter: blur(3px);
  33. }
  34. </style>