Prevent users from changing the disabled option (#5344)

This commit is contained in:
Aya Morisawa 2019-08-27 02:44:01 +09:00 committed by syuilo
parent 1c4e1af7c3
commit ba93bf7478
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ export default Vue.extend({
}, },
methods: { methods: {
toggle() { toggle() {
if (this.disabled) return;
this.$emit('change', !this.checked); this.$emit('change', !this.checked);
} }
} }