ant-design-vue/components/progress/index.ts

13 lines
257 B
TypeScript
Raw Normal View History

2020-10-17 12:52:58 +00:00
import { App } from 'vue';
2019-01-12 03:33:27 +00:00
import Progress from './progress';
2018-04-03 06:14:38 +00:00
2020-10-17 12:52:58 +00:00
export { ProgressProps } from './props';
2018-04-03 06:14:38 +00:00
/* istanbul ignore next */
2020-10-17 12:52:58 +00:00
Progress.install = function(app: App) {
2020-06-26 02:08:47 +00:00
app.component(Progress.name, Progress);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Progress;