frame

Frame with stacked panels and dense style

Frame with stacked panels and dense style

Загрузка превью…

src/frame/c-frame-4.vue

<script setup lang="ts">
import { Frame, FrameDescription, FrameHeader, FramePanel, FrameTitle } from "@/components/reui/frame"
</script>

<template>
  <Frame class="w-full" stacked dense>
    <FrameHeader>
      <FrameTitle>Section header</FrameTitle>
      <FrameDescription>Description for the section</FrameDescription>
    </FrameHeader>
    <FramePanel>
      <h2 class="text-sm font-semibold">Stacked panel</h2>
      <p class="text-muted-foreground text-sm">Section description</p>
    </FramePanel>
    <FramePanel>
      <h2 class="text-sm font-semibold">Stacked panel</h2>
      <p class="text-muted-foreground text-sm">Section description</p>
    </FramePanel>
  </Frame>
</template>

Установка

npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-frame-4.json

Зависимости реестра

Источник: порт из ReUI (Keenthemes, MIT)