Poll (am-poll)
Poll 將單一問題、fieldset/legend、native radio options 與可選百分比結果組成可重用的互動區塊。結果條同時保留百分比文字,不只依靠顏色傳達資訊。
---import Poll from "@astromer/core/components/Poll.astro";---
<Poll title="Which workflow should we improve next?" legend="Choose one option" name="roadmap" options={[ { value: "editor", label: "Editor handoff", percentage: 58, checked: true }, { value: "themes", label: "Theme presets", percentage: 42 }, ]} showResults={true} action="/polls/roadmap" endDate="30 Sep 2026" endDateTime="2026-09-30"/>元件只呈現選項與已傳入的結果,不會計票、更新百分比或處理投票 authorization;這些由 consumer endpoint 與 workflow 負責。詳見 playground /playground/marketing/。