element-plus/packages/radio/index.ts

9 lines
160 B
TypeScript
Raw Normal View History

2020-08-04 11:45:50 +08:00
import { App } from 'vue'
2020-08-05 23:30:12 +08:00
import Radio from './src/radio.vue'
2020-10-29 17:28:26 +08:00
Radio.install = (app: App): void => {
2020-08-04 11:45:50 +08:00
app.component(Radio.name, Radio)
}
2020-10-29 17:28:26 +08:00
export default Radio