mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import type { ComputedRef, InjectionKey } from 'vue'
|
|
|
|
interface RowContext {
|
|
gutter: ComputedRef<number>
|
|
}
|
|
|
|
export const rowContextKey: InjectionKey<RowContext> = Symbol('rowContextKey')
|