mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore(Button): improve code
This commit is contained in:
parent
3224a8978f
commit
2be579975a
@ -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();
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user