mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +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(app) {
|
|
app.component(Progress.name, Progress);
|
|
};
|
|
|
|
export default Progress;
|