mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
11 lines
214 B
Vue
11 lines
214 B
Vue
import Progress from './progress';
|
|
|
|
export { ProgressProps } from './progress';
|
|
|
|
/* istanbul ignore next */
|
|
Progress.install = function(Vue) {
|
|
Vue.component(Progress.name, Progress);
|
|
};
|
|
|
|
export default Progress;
|