Home > Article > Web Front-end > How to dynamically bind attributes of form elements in vue
Below I will share with you an article on the attribute method of dynamically binding form elements in Vue. It has a good reference value and I hope it will be helpful to everyone.
In vue, sometimes you may want to add attributes to an element like using jq. For example,
$('#select1').attr('disabled','disabled')
This method can also be implemented, but if you can use vue's method in vue, try not to use it. Using jq
Using the vue method to add attributes can be like this:
<select v-model='issues' class="ui dropdown t-select-list" :disabled='isDisabled'> <option></option> </selected>
disabled is the native attribute of the form element, and you can directly use the attribute binding Bind with a certain syntax: disabled, and then add a condition to control the dynamic addition and deletion of this attribute, such as:
watch:{ issueDatas(){ if(this.issueDatas.state==5){ this.isDisabled=true; } } }
When the status is 5, you can make the select read-only status
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Use webpack template in vue-cli to solve project construction and packaging path problems
Under vue-cli Using vuex (detailed tutorial)
How to use vue-cli to write a vue plug-in
The above is the detailed content of How to dynamically bind attributes of form elements in vue. For more information, please follow other related articles on the PHP Chinese website!