mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
* chore: bump prettier v3 and format all code * chore: mjs config * chore: revert * chore: revert * chore: update lock
71 lines
1.4 KiB
Vue
71 lines
1.4 KiB
Vue
<template>
|
|
<demo-nav />
|
|
<router-view v-slot="{ Component }">
|
|
<demo-section>
|
|
<keep-alive>
|
|
<component :is="Component" />
|
|
</keep-alive>
|
|
</demo-section>
|
|
</router-view>
|
|
</template>
|
|
|
|
<script>
|
|
import { watch } from 'vue';
|
|
import DemoNav from './components/DemoNav.vue';
|
|
import { useCurrentTheme } from '../common/iframe-sync';
|
|
import { config } from 'site-mobile-shared';
|
|
|
|
export default {
|
|
components: { DemoNav },
|
|
|
|
setup() {
|
|
const theme = useCurrentTheme();
|
|
|
|
watch(
|
|
theme,
|
|
(newVal, oldVal) => {
|
|
document.documentElement.classList.remove(`van-doc-theme-${oldVal}`);
|
|
document.documentElement.classList.add(`van-doc-theme-${newVal}`);
|
|
|
|
const { darkModeClass, lightModeClass } = config.site;
|
|
if (darkModeClass) {
|
|
document.documentElement.classList.toggle(
|
|
darkModeClass,
|
|
newVal === 'dark',
|
|
);
|
|
}
|
|
if (lightModeClass) {
|
|
document.documentElement.classList.toggle(
|
|
lightModeClass,
|
|
newVal === 'light',
|
|
);
|
|
}
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../common/style/base';
|
|
|
|
body {
|
|
min-width: 100vw;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.van-doc-theme-light {
|
|
background-color: var(--van-doc-gray-1);
|
|
}
|
|
|
|
.van-doc-theme-dark {
|
|
background-color: var(--van-doc-black);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
background: transparent;
|
|
}
|
|
</style>
|