2021-06-26 01:35:40 +00:00
|
|
|
import type { App, Plugin } from 'vue';
|
2021-06-07 09:35:03 +00:00
|
|
|
import Anchor, { AnchorProps } from './Anchor';
|
|
|
|
import AnchorLink, { AnchorLinkProps } from './AnchorLink';
|
2018-06-02 10:11:50 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
Anchor.Link = AnchorLink;
|
2018-09-19 05:21:57 +00:00
|
|
|
|
|
|
|
/* istanbul ignore next */
|
2021-06-23 15:08:16 +00:00
|
|
|
Anchor.install = function (app: App) {
|
2020-06-08 07:45:14 +00:00
|
|
|
app.component(Anchor.name, Anchor);
|
|
|
|
app.component(Anchor.Link.name, Anchor.Link);
|
2020-10-13 11:14:56 +00:00
|
|
|
return app;
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2020-11-01 07:03:33 +00:00
|
|
|
|
2021-06-07 09:35:03 +00:00
|
|
|
export { AnchorLinkProps, AnchorProps, AnchorLink, AnchorLink as Link };
|
|
|
|
|
2020-11-01 07:03:33 +00:00
|
|
|
export default Anchor as typeof Anchor &
|
|
|
|
Plugin & {
|
|
|
|
readonly Link: typeof AnchorLink;
|
|
|
|
};
|