shadcn-vue/apps/www/src/content/docs/components/separator.md
Sadegh Barati d34c620055
chore: lint and enable Volar hybrid mode (#419)
* chore: update deps

* feat: enable Volar hybrid mode

* chore: lint

* chore: build registry
2024-03-20 22:29:42 +03:30

764 B

title description source primitive
Separator Visually or semantically separates content. apps/www/src/lib/registry/default/ui/separator https://www.radix-vue.com/components/separator.html

Installation

npx shadcn-vue@latest add separator

<template #Manual>

Install the following dependency

npm install radix-vue

Copy and paste the following code into your project

<<< @/lib/registry/default/ui/separator/Separator.vue

Usage

<script setup lang="ts">
import { Separator } from '@/components/ui/separator'
</script>

<template>
  <Separator />
</template>