1.确认、取消
// 修改密码
onUpdate () {
this.$confirm("密码修改成功!", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "success"
})
.then(() => {
this.$router.push({ name: "login" });
})
.catch(() => {});
}
运行结果运行结果
2.alert
alert('请输入查询日期!')
运行结果运行结果
网友评论