mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import { App } from 'vue';
|
|
import Anchor from './Anchor';
|
|
import AnchorLink from './AnchorLink';
|
|
|
|
Anchor.Link = AnchorLink;
|
|
|
|
/* istanbul ignore next */
|
|
Anchor.install = function(app: App) {
|
|
app.component(Anchor.name, Anchor);
|
|
app.component(Anchor.Link.name, Anchor.Link);
|
|
};
|
|
export default Anchor;
|