mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
|
import { App } from 'vue'
|
||
|
import RadioButton from '../radio/src/radio-button.vue'
|
||
|
|
||
|
RadioButton.install = (app: App): void => {
|
||
|
app.component(RadioButton.name, RadioButton)
|
||
|
}
|
||
|
|
||
|
export default RadioButton
|