UNPKG

element-plus

Version:

A Component Library for Vue 3

11 lines (7 loc) 287 B
import type { InjectionKey } from 'vue' import type { ButtonProps } from '@element-plus/components/button' export interface ElButtonGroupContext { size?: ButtonProps['size'] type?: ButtonProps['type'] } export const elButtonGroupKey: InjectionKey<ElButtonGroupContext> = Symbol()