mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 04:08:10 +08:00
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
import TimeSelect from '../date-picker/src/picker/time-select';
|
|
|
|
/* istanbul ignore next */
|
|
TimeSelect.install = function(Vue) {
|
|
Vue.component(TimeSelect.name, TimeSelect);
|
|
};
|
|
|
|
export default TimeSelect;
|