Skip to content

Timeline

Vertical event feed for audit logs, releases, and incident history.

Usage

vue
<script setup>
import { ArchTimeline } from "@archora/ui";

const items = [{ id: "1", title: "Deploy started", time: "10:20", tone: "info" }];
</script>

<template>
  <ArchTimeline :items="items" dense />
</template>

Live sandbox

Timeline can be tested directly on this page.

interactive
  1. Token update

  2. Docs build passed

<Timeline />

Props

PropTypeDefaultDescription
itemsreadonly { id: string; title: string; description?: string; time?: string; tone?: string }[]-Item collection.
densebooleanfalseEnables compact mode.