mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
b01a6f4e81
* feat: Feature/datepicker && repeat-click directive (#288) * style: fix lint * test: fix local test * test: update test * fix: update api to disabledHours * chore: update * chore: fix lint
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import { App } from 'vue'
|
|
import TimePicker from './src/time-picker'
|
|
export default (app: App): void => {
|
|
app.component(TimePicker.name, TimePicker)
|
|
}
|