Files
vue-tui/examples/coding-agent/src/App.tsx
T
Yunfei He 795251a080 feat(examples): scaffold coding-agent example
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-24 22:26:21 +08:00

14 lines
317 B
TypeScript

import { defineComponent } from "vue";
import { Box, Text } from "@vue-tui/runtime";
export default defineComponent(() => {
return () => (
<Box flexDirection="column" paddingX={1}>
<Text bold color="cyan">
coding-agent
</Text>
<Text dimColor>scaffold works</Text>
</Box>
);
});