feat(examples): scaffold coding-agent example

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yunfei He
2026-05-24 22:26:21 +08:00
parent f0443ef90e
commit 795251a080
6 changed files with 429 additions and 268 deletions
+13
View File
@@ -0,0 +1,13 @@
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>
);
});