EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/tokens/radio.ts
2025-02-08 18:50:38 +08:00

10 lines
306 B
TypeScript

import type { InjectionKey } from 'vue'
import type { RadioGroupProps } from '../components'
export interface RadioGroupContext extends RadioGroupProps {
changeEvent: (val: RadioGroupProps['modelValue']) => void
}
export const radioGroupKey: InjectionKey<RadioGroupContext> =
Symbol('radioGroupKey')