mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
146 lines
2.7 KiB
Vue
146 lines
2.7 KiB
Vue
<template>
|
|
<div class="app">
|
|
<van-doc
|
|
v-if="config"
|
|
:lang="lang"
|
|
:config="config"
|
|
:versions="versions"
|
|
:simulator="simulator"
|
|
:has-simulator="hasSimulator"
|
|
:lang-configs="langConfigs"
|
|
>
|
|
<router-view />
|
|
</van-doc>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VanDoc from './components/index.vue';
|
|
import { config } from 'site-desktop-shared';
|
|
import { setLang } from '../common/locales';
|
|
|
|
export default {
|
|
components: {
|
|
VanDoc,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
hasSimulator: true,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
simulator() {
|
|
if (config.site.simulator?.url) {
|
|
return config.site.simulator?.url;
|
|
}
|
|
const path = location.pathname.replace(/\/index(\.html)?/, '/');
|
|
return `${path}mobile.html${location.hash}`;
|
|
},
|
|
|
|
lang() {
|
|
const { lang } = this.$route.meta;
|
|
return lang || '';
|
|
},
|
|
|
|
langConfigs() {
|
|
const { locales = {} } = config.site;
|
|
return Object.keys(locales).map((key) => ({
|
|
lang: key,
|
|
label: locales[key].langLabel || '',
|
|
}));
|
|
},
|
|
|
|
config() {
|
|
const { locales } = config.site;
|
|
|
|
if (locales) {
|
|
return locales[this.lang];
|
|
}
|
|
|
|
return config.site;
|
|
},
|
|
|
|
versions() {
|
|
return config.site.versions || null;
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
// eslint-disable-next-line
|
|
'$route.path'() {
|
|
this.setTitleAndToogleSimulator();
|
|
},
|
|
|
|
lang(val) {
|
|
setLang(val);
|
|
this.setTitleAndToogleSimulator();
|
|
},
|
|
|
|
config: {
|
|
handler(val) {
|
|
if (val) {
|
|
this.setTitleAndToogleSimulator();
|
|
}
|
|
},
|
|
immediate: true,
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
if (this.$route.hash) {
|
|
this.$nextTick(() => {
|
|
const el = document.querySelector(this.$route.hash);
|
|
if (el) {
|
|
el.scrollIntoView();
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
setTitleAndToogleSimulator() {
|
|
let { title } = this.config;
|
|
|
|
const navItems = this.config.nav.reduce(
|
|
(result, nav) => [...result, ...nav.items],
|
|
[]
|
|
);
|
|
|
|
const current = navItems.find(
|
|
(item) => item.path === this.$route.meta.name
|
|
);
|
|
|
|
if (current && current.title) {
|
|
title = current.title + ' - ' + title;
|
|
} else if (this.config.description) {
|
|
title += ` - ${this.config.description}`;
|
|
}
|
|
|
|
document.title = title;
|
|
|
|
this.hasSimulator = !(
|
|
config.site.hideSimulator ||
|
|
this.config.hideSimulator ||
|
|
(current && current.hideSimulator)
|
|
);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../common/style/base';
|
|
@import '../common/style/highlight';
|
|
|
|
.van-doc-intro {
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
|
|
p {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
</style>
|