Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/page-links.md
1# PageLinks23A list of links to be displayed in the page.45## Key Props67- `links`: as an array of objects with the following properties:89- `label: string`{lang="ts-type"}10- `icon?: string`{lang="ts-type"}11- `class?: any`{lang="ts-type"}12- `ui?: { item?: ClassNameValue, link?: ClassNameValue, linkLabel?: ClassNameValue, linkLabelExternalIcon?: ClassNameValue, linkLeadingIcon?: ClassNameValue }`{lang="ts-type"}1314You can pass any property from the [Link](/docs/components/link#props) component such as `to`, `target`, etc.1516- `title`: to display a title above the links.1718## Usage1920```vue21<UPageLinks22<!-- props here -->23/>24```25