HTML
<input type="button" @click="yanzheng" id="btn1" disabled="true" value="获取验证码"/>
JS
第一种方式
$("#btn1").removeAttr("disabled");
在Vue中用JQ需要加载JQ
cnpm install jquery --s
第二种方式
document.getElementById("btn1").disabled=false;
HTML
<input type="button" @click="yanzheng" id="btn1" disabled="true" value="获取验证码"/>
JS
第一种方式
$("#btn1").removeAttr("disabled");
在Vue中用JQ需要加载JQ
cnpm install jquery --s
第二种方式
document.getElementById("btn1").disabled=false;