mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 03:22:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			539 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			539 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div
 | |
|     class="van-doc-container van-doc-row"
 | |
|     :class="{ 'van-doc-container--with-simulator': hasSimulator }"
 | |
|   >
 | |
|     <slot />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   name: 'van-doc-container',
 | |
| 
 | |
|   props: {
 | |
|     hasSimulator: Boolean,
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="less">
 | |
| @import '../../common/style/var';
 | |
| 
 | |
| .van-doc-container {
 | |
|   box-sizing: border-box;
 | |
|   padding-left: @van-doc-nav-width;
 | |
|   overflow: hidden;
 | |
| 
 | |
|   &--with-simulator {
 | |
|     padding-right: @van-doc-simulator-width + @van-doc-padding;
 | |
|   }
 | |
| }
 | |
| </style>
 |