欧宁
点击 点击显示密码var app3 = new Vue({
el: ‘#app’,
data: {
seen: true,
inpu:false,
tex:true
},
methods:{
tollge:function(){
this.seen=!this.seen //!运算符:表示非。主要实现切换效果。点击的时候就触发。
},
wap:function(){
this.inpu=!this.inpu,
this.tex=!this.tex
}
}
})