AgentLayerZero Playground

<MessageList />

Scrollable list of message bubbles. Auto-scrolls to the bottom on new messages and during streaming. Renders the in-flight assistant reply as a bubble with a pulsing cursor. Empty state has its own slot (title / subtitle / logo / "powered by" link).

<script setup lang="ts">
import { MessageList } from '@agent-layer-zero/dendrite-vue'

const messages = [
  { role: 'user', content: 'What does dendrite do?' },
  { role: 'assistant', content: '…' },
]
</script>

<template>
  <MessageList
    :messages="messages"
    :streaming-content="streaming"
    :is-generating="true"
    empty-title="What's on your mind?"
    :render-markdown="renderMarkdown"
  />
</template>