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
9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
import Avatar from './Avatar'
|
|
|
|
/* istanbul ignore next */
|
|
Avatar.install = function (Vue) {
|
|
Vue.component(Avatar.name, Avatar)
|
|
}
|
|
|
|
export default Avatar
|