chore(Button): improve code

This commit is contained in:
chenjiahan 2021-04-13 20:58:26 +08:00 committed by neverland
parent 3224a8978f
commit 2be579975a
2 changed files with 6 additions and 9 deletions

View File

@ -77,9 +77,9 @@ export default defineComponent({
return (
<Loading
class={bem('loading')}
size={props.loadingSize}
type={props.loadingType}
class={bem('loading')}
/>
);
};
@ -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();
}

View File

@ -30,7 +30,5 @@ export function route(vm: ComponentPublicInstance<RouteProps>) {
export function useRoute() {
const vm = getCurrentInstance()!.proxy as ComponentPublicInstance<RouteProps>;
return () => {
route(vm);
};
return () => route(vm);
}