vue按钮禁用
一个按钮的动态禁用设置是如此多坑
必须要用到prop、data
prop来绑定其属性disabled,data是因为prop属性的内容不可改变。
<template>
<div>
<el-button type="success" size="small" @click="check">龟龟</el-button>
<el-button type="success" size="small" :disabled="flagBtn">查询</el-button>
<!-- <el-button type="success" size="small" :disabled="btnDis" @click="change">查询</el-button> -->
</div>
</template>
<script>
export default {
props: {
disabled: {
type:Boolean,
default:true
}
},
data() {
return{
flagBtn :this.disabled
}
},
methods: {
check(){
// alert(this.disabled);
// alert(this.flagBtn);
this.flagBtn = false
}
}
};
</script>
<style>
</style>
---------------------------
“朝着一个既定的方向去努力,就算没有天赋,在时间的积累下应该也能稍稍有点成就吧。”