From 4c486639a78b8bae808d911a34bbc2909a223b67 Mon Sep 17 00:00:00 2001 From: 07akioni <07akioni2@gmail.com> Date: Fri, 6 Nov 2020 11:50:51 +0800 Subject: [PATCH] fix(button): button tag follow the disabled state of the component --- src/button/src/Button.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/button/src/Button.vue b/src/button/src/Button.vue index fe8f99cc6..090fc8882 100644 --- a/src/button/src/Button.vue +++ b/src/button/src/Button.vue @@ -20,6 +20,7 @@ :tabindex="mergedFocusable ? 0 : -1" :type="attrType" :style="colorCssVars" + :disabled="disabled" @click="handleClick" @blur="handleBlur" @mousedown="handleMouseDown"