1.Vue作品页面展示
(1)登陆页面
(2)主页面
(3)个人中心(修改密码功能)
(4)时间显示
Vue作品实现教程
1.登录页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录页面</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<style>
.login_frame {
width: 600px;
height: 400px;
margin: 200px auto;
background-color: beige;
}
.login_main {
width: 400px;
height: 300px;
margin: 140px 170px;
}
</style>
</head>
<body>
<div class="login_frame row">
<form class="login_main col-md-6" action="http://localhost:80/login/log">
<label>用户名:<input type="text" class="form-control" required name="username" id="username"
style="width: 133%"></label>
<label>密码:<input type="text" class="form-control" required name="password" id="password"
style="width: 133%"></label><br>
<input type="reset" id="cz_btn" class=" btn btn-primary" value="重置" style="margin-left: 15px">
<input type="submit" id="dl_btn" class=" btn btn-success" value="登录" style="margin-left: 45px">
<a href=