mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
32 lines
482 B
Vue
32 lines
482 B
Vue
<template>
|
|
<demo-nav />
|
|
<router-view v-slot="{ Component }">
|
|
<keep-alive>
|
|
<demo-section>
|
|
<component :is="Component" />
|
|
</demo-section>
|
|
</keep-alive>
|
|
</router-view>
|
|
</template>
|
|
|
|
<script>
|
|
import DemoNav from './components/DemoNav.vue';
|
|
|
|
export default {
|
|
components: { DemoNav },
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../common/style/base';
|
|
|
|
body {
|
|
min-width: 100vw;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
background: transparent;
|
|
}
|
|
</style>
|