Skip to content

ContributionList

ContributionList displays numbered contribution claims with optional evidence markers. Use it for title-adjacent contribution slides or paper summary sections.

ContributionList example

Basic Usage

markdown
<ContributionList title="Main Contributions" :items="[
  { title: 'Efficient adaptation', description: 'Adds a lightweight routing stage before fine-tuning.', evidence: '+3.2 accuracy points' },
  { title: 'Stable deployment cost', description: 'Keeps the base representation fixed at inference time.', evidence: 'Same throughput budget' },
  { title: 'Reproducible evaluation', description: 'Reports five-seed averages across all experiments.', evidence: 'Appendix B' }
]" />

Props

PropTypeDefaultDescription
titlestring-Section title
labelstring'Contributions'Small label above the title
itemsContributionItem[][]Contribution items
orderedbooleantrueRender numeric markers
variantstring'primary'primary, success, warning, danger, or info
compactbooleanfalseReduce spacing

ContributionItem supports title, description, and evidence.