mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
11 lines
210 B
Vue
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
|