ant-design-vue/components/progress/index.jsx
tangjinzhou a6620cbbe5
feat: add component Vue.use method (#197)
* feat: add Vue.use feat

* feat: Vue.use method

* docs: update docs
2018-09-19 13:21:57 +08:00

11 lines
210 B
Vue

import Progress from './progress'
export { ProgressProps } from './progress'
/* istanbul ignore next */
Progress.install = function (Vue) {
Vue.component(Progress.name, Progress)
}
export default Progress