mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 11:32:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			413 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			413 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     <demo-nav />
 | |
|     <keep-alive>
 | |
|       <router-view />
 | |
|     </keep-alive>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import DemoNav from './components/DemoNav';
 | |
| 
 | |
| export default {
 | |
|   components: { DemoNav },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="less">
 | |
| @import '../common/style/var';
 | |
| @import '../common/style/base';
 | |
| 
 | |
| body {
 | |
|   min-width: 100vw;
 | |
| }
 | |
| 
 | |
| ::-webkit-scrollbar {
 | |
|   width: 0;
 | |
|   background: transparent;
 | |
| }
 | |
| </style>
 |