mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
47ebb19881
* feat(color-picker): add color-picker component finished component,unit tests * fix: elment-plus/index.ts add color-picker Co-authored-by: plus li <121318100@gmail.com> Co-authored-by: Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { App } from 'vue'
|
|
import ColorPicker from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(ColorPicker.name, ColorPicker)
|
|
}
|
|
|
|
export { ColorPicker }
|