Skip to content

KSeparator

示例

Orientations

Content between separators

Vertical

AB

Visual divider that supports horizontal and vertical orientations.

Props

NameTypeDefaultDescription
orientation'horizontal' | 'vertical''horizontal'Orientation of the separator.
classstringAdditional CSS classes.

Basic Usage

vue
<script setup>
import { KSeparator } from '@kK-2004/ui-component'
</script>

<template>
  <KSeparator orientation="horizontal" />
</template>