mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
26 lines
554 B
Vue
26 lines
554 B
Vue
<script setup lang="ts">
|
|
import type { SeparatorProps } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
import { Separator } from "reka-ui";
|
|
import { computed, type HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<
|
|
SeparatorProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Separator
|
|
v-bind="delegatedProps"
|
|
:class="cn('-mx-1 h-px bg-border', props.class)"
|
|
>
|
|
<slot />
|
|
</Separator>
|
|
</template>
|