mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-01 02:37:46 +08:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
import type { InjectionKey } from 'vue'
|
||
|
|
||
|
import type { ComponentSize } from '@element-plus/utils/types'
|
||
|
|
||
|
export interface ElButtonGruopContext {
|
||
|
size?: ComponentSize
|
||
|
}
|
||
|
|
||
|
export const elButtonGroupKey: InjectionKey<ElButtonGruopContext> = Symbol()
|