element-plus/packages/radio-button/index.ts

12 lines
339 B
TypeScript

import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
import RadioButton from '../radio/src/radio-button.vue'
RadioButton.install = (app: App): void => {
app.component(RadioButton.name, RadioButton)
}
const _RadioButton: SFCWithInstall<typeof RadioButton> = RadioButton
export default _RadioButton