You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<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>
|