mirror of
https://github.com/creativetimofficial/muse-vue-ant-design-dashboard.git
synced 2025-08-16 03:20:17 +08:00
26 lines
433 B
Vue
26 lines
433 B
Vue
<template>
|
|
<div class="page-anchor">
|
|
<a-anchor :targetOffset="80" :offsetTop="85">
|
|
<a-anchor-link v-for="(title, id) in anchors" :key="id" :href="url + '#' + id" :title="title" />
|
|
</a-anchor>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: ['anchors'],
|
|
data(){
|
|
return {
|
|
url: '',
|
|
}
|
|
},
|
|
beforeMount(){
|
|
this.url = window.location.href.split('#')[0] ;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|