Complete keyboard navigation and focus style enhancement

This commit is contained in:
Bubka
2022-09-30 14:00:22 +02:00
parent 41387453d5
commit 1610cf3738
7 changed files with 26 additions and 27 deletions

View File

@ -47,7 +47,7 @@
methods: {
setCheckbox(event) {
if (this.$attrs.disabled == false) {
if (this.$attrs['disabled'] == undefined) {
this.form[this.fieldName] = !this.form[this.fieldName]
this.$emit(this.fieldName, this.form[this.fieldName])
}