mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import { App } from 'vue'
|
|
import TimeSelect from './src/time-select.vue'
|
|
|
|
TimeSelect.install = (app: App): void => {
|
|
app.component(TimeSelect.name, TimeSelect)
|
|
}
|
|
|
|
export default TimeSelect
|