123456789101112131415161718192021222324252627 |
- <script>
- export default {
- data() {
- return {
- count: 0
- }
- }
- }
- </script>
- <template class="login">
- <div class="login">
- <h4 style="color:orange;">登录页面</h4>
- <label>用户名</label><input type="text" placeholder="请输入用户名"/><br/>
- <label>密码</label><input type="password" placeholder="请输入密码"/><br/>
- <button>登录</button>
- </div>
- </template>
- <style scoped>
- @import url(../../style/common.css);
- .login{
- width:80%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- </style>
|