mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 13:39:40 +08:00
16 lines
375 B
TypeScript
16 lines
375 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);
|
|
return app;
|
|
};
|
|
export default Anchor as typeof Anchor & {
|
|
readonly Link: typeof AnchorLink;
|
|
};
|