mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
150 lines
2.7 KiB
Vue
150 lines
2.7 KiB
Vue
<template>
|
|
<div class="side-nav">
|
|
<div class="mobile-switch-lang">
|
|
<span
|
|
:class="{ active: $vantLang === 'zh-CN' }"
|
|
@click="switchLang('zh-CN')"
|
|
>
|
|
中文
|
|
</span>
|
|
<span
|
|
:class="{ active: $vantLang === 'en-US' }"
|
|
@click="switchLang('en-US')"
|
|
>
|
|
EN
|
|
</span>
|
|
</div>
|
|
|
|
<h1 class="vant-title">
|
|
<img src="https://img.yzcdn.cn/vant/logo.png">
|
|
<span>Vant</span>
|
|
</h1>
|
|
<h2 class="vant-desc">{{ description }}</h2>
|
|
<template v-for="item in navList">
|
|
<mobile-nav
|
|
v-for="(group, index) in item.groups"
|
|
:group="group"
|
|
:base="$vantLang"
|
|
:key="index"
|
|
/>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import docConfig from '../doc.config';
|
|
import MobileNav from './MobileNav';
|
|
import { setLang } from '../utils/lang';
|
|
|
|
export default {
|
|
components: {
|
|
MobileNav
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
docConfig
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
navList() {
|
|
return (this.docConfig[this.$vantLang].nav || []).filter(item => item.showInMobile);
|
|
},
|
|
|
|
description() {
|
|
return this.$vantLang === 'zh-CN' ? '轻量、可靠的移动端 Vue 组件库' : 'Mobile UI Components built on Vue';
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
switchLang(lang) {
|
|
const from = lang === 'zh-CN' ? 'en-US' : 'zh-CN';
|
|
this.$router.push(this.$route.path.replace(from, lang));
|
|
setLang(lang);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../../../src/style/var';
|
|
|
|
.side-nav {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
padding: 46px 20px 20px;
|
|
background: @white;
|
|
|
|
.vant-title,
|
|
.vant-desc {
|
|
padding-left: @padding-md;
|
|
font-weight: normal;
|
|
user-select: none;
|
|
}
|
|
|
|
.vant-title {
|
|
margin: 0 0 @padding-md;
|
|
|
|
img,
|
|
span {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
img {
|
|
width: 36px;
|
|
}
|
|
|
|
span {
|
|
margin-left: @padding-md;
|
|
font-weight: 500;
|
|
font-size: 36px;
|
|
}
|
|
}
|
|
|
|
.vant-desc {
|
|
margin: 0 0 40px;
|
|
color: #7d7e80;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.mobile-switch-lang {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
overflow: hidden;
|
|
color: @blue;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
|
|
span {
|
|
display: inline-block;
|
|
width: 48px;
|
|
color: @text-color;
|
|
line-height: 22px;
|
|
text-align: center;
|
|
background-color: #fff;
|
|
border: 1px solid @border-color;
|
|
|
|
&:first-child {
|
|
border-right: none;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-left: none;
|
|
border-radius: 0 3px 3px 0;
|
|
}
|
|
|
|
&.active {
|
|
color: @white;
|
|
background-color: @blue;
|
|
border-color: @blue;
|
|
}
|
|
}
|
|
}
|
|
</style>
|