import type { InjectionKey } from 'vue' import type { SelectContext, SelectGroupContext } from './type' // For individual build sharing injection key, we had to make `Symbol` to string export const selectGroupKey: InjectionKey = Symbol('ElSelectGroup') export const selectKey: InjectionKey = Symbol('ElSelect')