diff --git a/src/button/Button.tsx b/src/button/Button.tsx
index 8c4e1800a..77724b788 100644
--- a/src/button/Button.tsx
+++ b/src/button/Button.tsx
@@ -77,9 +77,9 @@ export default defineComponent({
return (
);
};
@@ -116,9 +116,9 @@ export default defineComponent({
const getStyle = () => {
const { color, plain } = props;
if (color) {
- const style: CSSProperties = {};
-
- style.color = plain ? color : 'white';
+ const style: CSSProperties = {
+ color: plain ? color : 'white',
+ };
if (!plain) {
// Use background instead of backgroundColor to make linear-gradient work
@@ -139,8 +139,7 @@ export default defineComponent({
const onClick = (event: MouseEvent) => {
if (props.loading) {
event.preventDefault();
- }
- if (!props.loading && !props.disabled) {
+ } else if (!props.disabled) {
emit('click', event);
route();
}
diff --git a/src/composables/use-route.ts b/src/composables/use-route.ts
index f387764dc..718e9f46d 100644
--- a/src/composables/use-route.ts
+++ b/src/composables/use-route.ts
@@ -30,7 +30,5 @@ export function route(vm: ComponentPublicInstance) {
export function useRoute() {
const vm = getCurrentInstance()!.proxy as ComponentPublicInstance;
- return () => {
- route(vm);
- };
+ return () => route(vm);
}