Box

A macOS group box (NSBox): a rounded container with a quaternary fill and no border, exactly as the Tahoe kit draws it. The optional title renders as a footnote-style caption above the box; the #title slot takes precedence over the title prop.

Network

Usage

vue
<script setup lang="ts">
import { MacBox } from 'macvue'
</script>

<template>
  <MacBox title="Appearance">
    Box content
  </MacBox>
</template>

API

Props

PropTypeDefault
titlestring

Slots

SlotDescription
defaultBox content.
titleCaption above the box; wins over the title prop.