34 lines
		
	
	
		
			714 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			714 B
		
	
	
	
		
			Vue
		
	
	
| <template>
 | |
|   <demo-sort>
 | |
|     <basic />
 | |
|     <placement />
 | |
|     <arrow-point-at-center />
 | |
|     <auto-adjust-overflow />
 | |
|     <color />
 | |
|   </demo-sort>
 | |
| </template>
 | |
| <script lang="ts">
 | |
| import Basic from './basic.vue';
 | |
| import Placement from './placement.vue';
 | |
| import arrowPointAtCenter from './arrow-point-at-center.vue';
 | |
| import AutoAdjustOverflow from './auto-adjust-overflow.vue';
 | |
| import Color from './color.vue';
 | |
| import CN from '../index.zh-CN.md';
 | |
| import US from '../index.en-US.md';
 | |
| import { defineComponent } from 'vue';
 | |
| export default defineComponent({
 | |
|   CN,
 | |
|   US,
 | |
|   components: {
 | |
|     Basic,
 | |
|     Placement,
 | |
|     arrowPointAtCenter,
 | |
|     AutoAdjustOverflow,
 | |
|     Color,
 | |
|   },
 | |
|   setup() {
 | |
|     return {};
 | |
|   },
 | |
| });
 | |
| </script>
 |