14 lines
418 B
TypeScript
Raw Permalink Normal View History

2024-11-05 10:14:41 +08:00
import { withInstall, withNoopInstall } from '../../utils'
import Radio from './src/radio.vue'
import RadioGroup from './src/radio-group.vue'
export const TnRadio = withInstall(Radio, {
RadioGroup,
})
export default TnRadio
export const TnRadioGroup = withNoopInstall(RadioGroup)
export * from './src/radio'
export * from './src/radio-group'
export type { RadioInstance, RadioGroupInstance } from './src/instance'