mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 03:22:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			547 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			547 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <section class="van-doc-demo-section" :class="demoName">
 | |
|     <slot />
 | |
|   </section>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { decamelize } from '../../common';
 | |
| 
 | |
| export default {
 | |
|   name: 'demo-section',
 | |
| 
 | |
|   computed: {
 | |
|     demoName() {
 | |
|       const { meta } = this.$route || {};
 | |
|       if (meta && meta.name) {
 | |
|         return `demo-${decamelize(meta.name)}`;
 | |
|       }
 | |
| 
 | |
|       return '';
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="less">
 | |
| .van-doc-demo-section {
 | |
|   box-sizing: border-box;
 | |
|   min-height: calc(100vh - 56px);
 | |
|   padding-bottom: 20px;
 | |
| }
 | |
| </style>
 |