mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-03-08 06:08:03 +00:00
laravel inertia
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import Separator from '@/components/ui/separator/Separator.vue';
|
||||
import { cn } from '@/lib/utils';
|
||||
import type { HTMLAttributes } from 'vue';
|
||||
|
||||
const props = defineProps<{
|
||||
class?: HTMLAttributes['class'];
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Separator data-sidebar="separator" :class="cn('mx-2 w-auto bg-sidebar-border', props.class)">
|
||||
<slot />
|
||||
</Separator>
|
||||
</template>
|
||||
Reference in New Issue
Block a user