You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/progress/index.ts

13 lines
257 B

import { App } from 'vue';
import Progress from './progress';
7 years ago
export { ProgressProps } from './props';
7 years ago
/* istanbul ignore next */
Progress.install = function(app: App) {
app.component(Progress.name, Progress);
return app;
};
export default Progress;