mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
35 lines
525 B
Vue
35 lines
525 B
Vue
<template>
|
|
<div>
|
|
<nav-bar />
|
|
<keep-alive>
|
|
<router-view />
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DemoNav from './components/DemoNav';
|
|
|
|
export default {
|
|
components: {
|
|
DemoNav
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
body {
|
|
min-width: 100vw;
|
|
color: #323233;
|
|
font-family: 'PingFang SC', Helvetica, Tohoma, Arial, sans-serif;
|
|
line-height: 1;
|
|
background-color: #f8f8f8;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
background: transparent;
|
|
}
|
|
</style>
|