显示WiFi密码小案例
Posted eliwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示WiFi密码小案例相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<input :type="type"><button @click="pwd">{{message}}</button>
</div>
<script>
var vm = new Vue({
el:"#app",
data:{
type: "password",
message:"显示密码",
},
methods:{
pwd(){
if(this.type==="password") {
this.type = "text";
this.message="隐藏密码";
}else{
this.type="password";
this.message="显示密码";
}
}
}
});
</script>
</body>
</html>
以上是关于显示WiFi密码小案例的主要内容,如果未能解决你的问题,请参考以下文章