mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-24 11:05:17 +08:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { App } from 'vue'
|
|
import ColorPicker from './src/index.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(ColorPicker.name, ColorPicker)
|
|
}
|
|
|
|
export { ColorPicker }
|