Skip to content

ContributionList

ContributionList 用于展示带编号的贡献点,并可附带证据标记。适合 title 附近的 contribution slide 或论文摘要页。

ContributionList 示例

基本用法

markdown
<ContributionList title="Main Contributions" :items="[
  { title: 'Efficient adaptation', description: '在 fine-tuning 前加入轻量 routing。', evidence: '+3.2 accuracy points' },
  { title: 'Stable deployment cost', description: '推理时保持 base representation 固定。', evidence: 'Same throughput budget' },
  { title: 'Reproducible evaluation', description: '所有实验报告 5 次随机种子平均值。', evidence: 'Appendix B' }
]" />

Props

Prop类型默认值说明
titlestring-区块标题
labelstring'Contributions'标题上方的小标签
itemsContributionItem[][]贡献条目
orderedbooleantrue是否显示数字标记
variantstring'primary'primarysuccesswarningdangerinfo
compactbooleanfalse使用紧凑间距

ContributionItem 支持 titledescriptionevidence