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

13 lines
259 B
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import Progress from './progress';
import Base from '../base';
2018-04-03 14:14:38 +08:00
2019-01-12 11:33:27 +08:00
export { ProgressProps } from './progress';
2018-04-03 14:14:38 +08:00
/* istanbul ignore next */
2019-01-12 11:33:27 +08:00
Progress.install = function(Vue) {
Vue.use(Base);
2019-01-12 11:33:27 +08:00
Vue.component(Progress.name, Progress);
};
2019-01-12 11:33:27 +08:00
export default Progress;