Skip to content

AgentSidebar

AI workspace sidebar with groups, collapse, create, and selection.

Demo

AgentSidebarOne public API for H5 and Wevu
Live state
Release readiness workflowAgentSidebar

Install

bash
pnpm add @varo-ui/ai
pnpm dlx @varo-ui/cli add --target h5 components/agent-ui
pnpm dlx @varo-ui/cli add --target weapp components/agent-ui

Registry installs the UI component into your project, so import it from @/components/agent-ui; @varo-ui/ai provides the event protocol, stream controller, and Markdown primitives—not Vue/Wevu UI components.

Basic Usage

vue
<script setup lang="ts">
import { AgentSidebar } from '@/components/agent-ui'
</script>

<template>
  <AgentSidebar v-model:active-id="active" :groups="groups" />
</template>

Props

PropTypeDefaultDescription
activeIdstringActive item
collapsedbooleanfalseCollapsed
groupsAgentSidebarGroup[][]Groups
titlestringAI workspaceTitle

Events

EventPayloadDescription
createvoidCreate chat
selectAgentSidebarItemSelect item
update:activeIdstringUpdate active item
update:collapsedbooleanUpdate collapsed

Slots

SlotDescription
footerFooter

Target Notes

TargetImport
H5Named export from @/components/agent-ui
weappDefault export from @/components/agent-ui/AgentSidebar.vue

The public API stays aligned across targets; DOM/WXML, scheduling, and native events are target-owned.