mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
123 lines
2.8 KiB
Vue
123 lines
2.8 KiB
Vue
<template>
|
|
<button
|
|
:class="[
|
|
'el-button',
|
|
type ? 'el-button--' + type : '',
|
|
buttonSize ? 'el-button--' + buttonSize : '',
|
|
{
|
|
'is-disabled': buttonDisabled,
|
|
'is-loading': loading,
|
|
'is-plain': plain,
|
|
'is-round': round,
|
|
'is-circle': circle
|
|
}
|
|
]"
|
|
:disabled="buttonDisabled || loading"
|
|
:autofocus="autofocus"
|
|
:type="nativeType"
|
|
@click="handleClick"
|
|
>
|
|
<i v-if="loading" class="el-icon-loading"></i>
|
|
<i v-if="icon && !loading" :class="icon"></i>
|
|
<span v-if="$slots.default"><slot></slot></span>
|
|
</button>
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
import { computed, inject, defineComponent } from 'vue'
|
|
import { useGlobalConfig } from '@element-plus/utils/util'
|
|
import { isValidComponentSize } from '@element-plus/utils/validators'
|
|
import { elFormKey, elFormItemKey } from '@element-plus/form'
|
|
|
|
import type { PropType } from 'vue'
|
|
import type { ElFormContext, ElFormItemContext } from '@element-plus/form'
|
|
|
|
type IButtonType = PropType<'primary' | 'success' | 'warning' | 'danger' | 'info' | 'text' | 'default'>
|
|
type IButtonNativeType = PropType<'button' | 'submit' | 'reset'>
|
|
|
|
interface IButtonProps {
|
|
type: string
|
|
size: string
|
|
icon: string
|
|
nativeType: string
|
|
loading: boolean
|
|
disabled: boolean
|
|
plain: boolean
|
|
autofocus: boolean
|
|
round: boolean
|
|
circle: boolean
|
|
}
|
|
|
|
type EmitFn = (evt: Event) => void
|
|
|
|
export default defineComponent({
|
|
name: 'ElButton',
|
|
|
|
props: {
|
|
type: {
|
|
type: String as IButtonType,
|
|
default: 'default',
|
|
validator: (val: string) => {
|
|
return [
|
|
'default',
|
|
'primary',
|
|
'success',
|
|
'warning',
|
|
'info',
|
|
'danger',
|
|
'text',
|
|
].includes(val)
|
|
},
|
|
},
|
|
size: {
|
|
type: String as PropType<ComponentSize>,
|
|
validator: isValidComponentSize,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
nativeType: {
|
|
type: String as IButtonNativeType,
|
|
default: 'button',
|
|
validator: (val: string) => {
|
|
return ['button', 'submit', 'reset'].includes(val)
|
|
},
|
|
},
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
plain: Boolean,
|
|
autofocus: Boolean,
|
|
round: Boolean,
|
|
circle: Boolean,
|
|
},
|
|
|
|
emits: ['click'],
|
|
|
|
setup(props, ctx) {
|
|
const $ELEMENT = useGlobalConfig()
|
|
|
|
const elForm = inject(elFormKey, {} as ElFormContext)
|
|
const elFormItem = inject(elFormItemKey, {} as ElFormItemContext)
|
|
|
|
const buttonSize = computed(() => {
|
|
return props.size || elFormItem.size || $ELEMENT.size
|
|
})
|
|
const buttonDisabled = computed(() => {
|
|
return props.disabled || elForm.disabled
|
|
})
|
|
|
|
//methods
|
|
const handleClick = evt => {
|
|
ctx.emit('click', evt)
|
|
}
|
|
|
|
return {
|
|
buttonSize,
|
|
buttonDisabled,
|
|
handleClick,
|
|
}
|
|
},
|
|
})
|
|
</script>
|