27 lines
		
	
	
		
			482 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			482 B
		
	
	
	
		
			Vue
		
	
	
| <template>
 | |
|   <div>
 | |
|     <h1>Basic</h1>
 | |
|     <Basic />
 | |
|     <h1>ArrowCenter</h1>
 | |
|     <ArrowCenter />
 | |
|     <h1>AutoAdjust</h1>
 | |
|     <AutoAdjust />
 | |
|     <h1>Placement</h1>
 | |
|     <Placement />
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| import Basic from './basic'
 | |
| import ArrowCenter from './arrow-point-at-center'
 | |
| import AutoAdjust from './auto-adjust-overflow'
 | |
| import Placement from './placement'
 | |
| export default {
 | |
|   components: {
 | |
|     Basic,
 | |
|     ArrowCenter,
 | |
|     AutoAdjust,
 | |
|     Placement,
 | |
|   },
 | |
| }
 | |
| </script>
 |