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/pricing-plan.md
1# PricingPlan23A customizable pricing plan to display in a pricing page.45## Key Props67- `title`: to set the title of the PricingPlan.8- `description`: to set the description of the PricingPlan.9- `badge`: to display a [Badge](/docs/components/badge) next to the title of the PricingPlan.10- `price`: to set the price of the PricingPlan.11- `discount`: to set a discounted price that will be displayed alongside the original price (which will be shown with a strikethrough).12- `features`: as an array of string to display a list of features on the PricingPlan:1314## ::component-code1516prettier: true17hide:1819- class20ignore:21- title22- description23- price24- features25props:26title: 'Solo'27description: 'For bootstrappers and indie hackers.28- `button`: with any property from the [Button](/docs/components/button) component to display a button at the bottom of the PricingPlan.29- `variant`: to change the variant of the PricingPlan.30- `orientation`: to change the orientation of the PricingPlan.31- `tagline`: to display a tagline text above the price.3233## Usage3435```vue36<UPricingPlan37<!-- props here -->38/>39```40