KSeparator
示例
Orientations
Content between separators
Vertical
AB
Visual divider that supports horizontal and vertical orientations.
Props
| Name | Type | Default | Description |
|---|---|---|---|
| orientation | 'horizontal' | 'vertical' | 'horizontal' | Orientation of the separator. |
| class | string | — | Additional CSS classes. |
Basic Usage
vue
<script setup>
import { KSeparator } from '@kK-2004/ui-component'
</script>
<template>
<KSeparator orientation="horizontal" />
</template>