mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
159 lines
2.7 KiB
Vue
159 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';
|
|
|
|
export default {
|
|
name: 'van-doc-nav',
|
|
|
|
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">
|
|
@import '../../common/style/var';
|
|
|
|
.van-doc-nav {
|
|
position: fixed;
|
|
left: 0;
|
|
z-index: 1;
|
|
min-width: @van-doc-nav-width;
|
|
max-width: @van-doc-nav-width;
|
|
padding: @van-doc-padding 0;
|
|
overflow-y: scroll;
|
|
background-color: #fff;
|
|
box-shadow: 0 8px 12px #ebedf0;
|
|
|
|
@media (min-width: @van-doc-row-max-width) {
|
|
left: 50%;
|
|
margin-left: -(@van-doc-row-max-width / 2);
|
|
}
|
|
|
|
&::-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: 8px 0 8px @van-doc-padding;
|
|
color: #455a64;
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
line-height: 28px;
|
|
}
|
|
|
|
&__item {
|
|
a {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 8px 0 8px @van-doc-padding;
|
|
color: #455a64;
|
|
font-size: 14px;
|
|
line-height: 28px;
|
|
transition: color 0.2s;
|
|
|
|
&:hover,
|
|
&.active {
|
|
color: @van-doc-green;
|
|
}
|
|
|
|
&.active {
|
|
background-color: fade(@van-doc-green, 8);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
span {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1300px) {
|
|
&__item {
|
|
a {
|
|
font-size: 13px;
|
|
}
|
|
|
|
&:active {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|