You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
517 B
20 lines
517 B
import type { App, Plugin } from 'vue';
|
|
import Anchor, { AnchorProps } from './Anchor';
|
|
import AnchorLink, { AnchorLinkProps } 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 { AnchorLinkProps, AnchorProps, AnchorLink, AnchorLink as Link };
|
|
|
|
export default Anchor as typeof Anchor &
|
|
Plugin & {
|
|
readonly Link: typeof AnchorLink;
|
|
};
|