2019-08-27 09:42:40 +08:00
|
|
|
<template>
|
|
|
|
<div :class="anchorLinkClasses">
|
|
|
|
<a :class="linkTitleClasses" :href="href" :data-scroll-offset="scrollOffset" :data-href="href" @click.prevent="goAnchor" :title="title">{{ title }}</a>
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'AnchorLink',
|
|
|
|
inject: ['anchorCom'],
|
|
|
|
props: {
|
|
|
|
href: String,
|
|
|
|
title: String,
|
|
|
|
scrollOffset: {
|
|
|
|
type: Number,
|
|
|
|
default () {
|
|
|
|
return this.anchorCom.scrollOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
prefix: 'ivu-anchor-link'
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
anchorLinkClasses () {
|
|
|
|
return [
|
|
|
|
this.prefix,
|
|
|
|
this.anchorCom.currentLink === this.href ? `${this.prefix}-active` : ''
|
|
|
|
];
|
|
|
|
},
|
|
|
|
linkTitleClasses () {
|
|
|
|
return [
|
|
|
|
`${this.prefix}-title`
|
|
|
|
];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
goAnchor () {
|
|
|
|
this.currentLink = this.href;
|
|
|
|
this.anchorCom.handleHashChange();
|
|
|
|
this.anchorCom.handleScrollTo();
|
|
|
|
this.anchorCom.$emit('on-select', this.href);
|
|
|
|
const isRoute = this.$router;
|
|
|
|
if (isRoute) {
|
2019-09-26 10:00:53 +08:00
|
|
|
this.$router.push(this.href, () => {});
|
2019-08-27 09:42:40 +08:00
|
|
|
} else {
|
|
|
|
window.location.href = this.href;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.anchorCom.init();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|