mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
155 lines
2.7 KiB
Vue
155 lines
2.7 KiB
Vue
<template>
|
|
<div class="van-doc-nav" :style="style">
|
|
<div
|
|
v-for="(group, index) in navConfig"
|
|
class="van-doc-nav__group"
|
|
:key="index"
|
|
>
|
|
<div class="van-doc-nav__title">
|
|
{{ group.title }}
|
|
</div>
|
|
<template v-if="group.items">
|
|
<div
|
|
v-for="(item, groupIndex) in group.items"
|
|
:key="groupIndex"
|
|
class="van-doc-nav__item"
|
|
>
|
|
<van-doc-nav-link :item="item" :base="base" />
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import NavLink from './NavLink.vue';
|
|
|
|
export default {
|
|
name: 'VanDocNav',
|
|
|
|
components: {
|
|
[NavLink.name]: NavLink,
|
|
},
|
|
|
|
props: {
|
|
lang: String,
|
|
navConfig: Array,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
top: 64,
|
|
bottom: 0,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
style() {
|
|
return {
|
|
top: this.top + 'px',
|
|
bottom: this.bottom + 'px',
|
|
};
|
|
},
|
|
|
|
base() {
|
|
return this.lang ? `/${this.lang}/` : '/';
|
|
},
|
|
},
|
|
|
|
created() {
|
|
window.addEventListener('scroll', this.onScroll);
|
|
this.onScroll();
|
|
},
|
|
|
|
methods: {
|
|
onScroll() {
|
|
const { pageYOffset: offset } = window;
|
|
this.top = Math.max(0, 64 - offset);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.van-doc-nav {
|
|
position: fixed;
|
|
left: 0;
|
|
z-index: 1;
|
|
min-width: var(--van-doc-nav-width);
|
|
max-width: var(--van-doc-nav-width);
|
|
padding: 8px 0;
|
|
overflow-y: scroll;
|
|
background-color: var(--van-doc-background-2);
|
|
|
|
@media (min-width: var(--van-doc-row-max-width)) {
|
|
left: 50%;
|
|
margin-left: calc((var(--van-doc-row-max-width) / 2 * -1));
|
|
}
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: transparent;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
&:hover::-webkit-scrollbar-thumb {
|
|
background-color: rgba(69, 90, 100, 0.2);
|
|
}
|
|
|
|
&__group {
|
|
margin-bottom: 16px;
|
|
padding-left: 6px;
|
|
}
|
|
|
|
&__title {
|
|
padding: 24px 0 0 var(--van-doc-padding);
|
|
color: var(--van-doc-text-color-2);
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
line-height: 28px;
|
|
}
|
|
|
|
&__item {
|
|
a {
|
|
display: block;
|
|
margin: 8px 0;
|
|
padding: 6px 0 6px var(--van-doc-padding);
|
|
color: var(--van-doc-text-color-3);
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
transition: color 0.2s;
|
|
|
|
&:hover,
|
|
&.active {
|
|
color: var(--van-doc-link-color);
|
|
}
|
|
|
|
&.active {
|
|
font-weight: 600;
|
|
}
|
|
|
|
span {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1300px) {
|
|
&__item {
|
|
a {
|
|
font-size: 13px;
|
|
}
|
|
|
|
&:active {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|