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
16 lines
352 B
Vue
16 lines
352 B
Vue
import Anchor from './Anchor'
|
|
import AnchorLink from './AnchorLink'
|
|
|
|
export { AnchorProps } from './Anchor'
|
|
export { AnchorLinkProps } from './AnchorLink'
|
|
|
|
Anchor.Link = AnchorLink
|
|
|
|
/* istanbul ignore next */
|
|
Anchor.install = function (Vue) {
|
|
Vue.component(Anchor.name, Anchor)
|
|
Vue.component(Anchor.Link.name, Anchor.Link)
|
|
}
|
|
|
|
export default Anchor
|