mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
16 lines
360 B
Vue
16 lines
360 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;
|