mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
import Badge from './Badge'
|
|
|
|
/* istanbul ignore next */
|
|
Badge.install = function (Vue) {
|
|
Vue.component(Badge.name, Badge)
|
|
}
|
|
|
|
export default Badge
|
|
|