frame
Basic frame
Basic frame
Загрузка превью…
src/frame/c-frame-1.vue
<script setup lang="ts">
import { Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle } from "@/components/reui/frame"
</script>
<template>
<Frame class="w-full">
<FrameHeader>
<FrameTitle>Section header</FrameTitle>
<FrameDescription>Description for the section</FrameDescription>
</FrameHeader>
<FramePanel>
<h2 class="text-sm font-semibold">Section title</h2>
<p class="text-muted-foreground text-sm">Section description</p>
</FramePanel>
<FrameFooter>
<p class="text-muted-foreground text-sm">Section footer</p>
</FrameFooter>
</Frame>
</template>
Установка
npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-frame-1.jsonЗависимости реестра
Источник: порт из ReUI (Keenthemes, MIT)