- <script>
- export default {
- data() {
- return {
- count: 0
- }
- }
- }
- </script>
- <template>
- <h4 style="color:orange;">登录页面</h4>
- <label>用户名</label><input type="text" placeholder="请输入用户名"/><br/>
- <label>密码</label><input type="password" placeholder="请输入密码"/><br/>
- <button>登录</button>
- </template>
|