Skip to content

AgentFilterTable

Live Agent data filtering with status chips.

Demo

AgentFilterTableOne public API for H5 and Wevu
Live state
Release readiness workflowAgentFilterTable
Target
AgentComposerH5 / Weappcompleted
AgentFileDiffH5 / Weapprunning
AgentSidebarH5 / Weappwaiting

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 { AgentFilterTable } from '@/components/agent-ui'
</script>

<template>
  <AgentFilterTable v-model:filter="filter" :filters="filters" :columns="columns" :rows="rows" />
</template>

Props

PropTypeDefaultDescription
classNameClassValueundefinedRoot classes merged by the target-specific cn helper
filterstringallCurrent filter
filtersAgentFilterOption[][]Filters
columnsAgentTableColumn[][]Columns
rowsAgentTableRow[][]Rows
statusKeystringstatusStatus key

Events

EventPayloadDescription
selectAgentTableRowSelect row
update:filterstringUpdate filter

Target Notes

TargetImport
H5Named export from @/components/agent-ui
weappDefault export from @/components/agent-ui/AgentFilterTable.vue; types from @/components/agent-ui/agent-table

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