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