feat(examples): scaffold coding-agent example
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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>
|
||||
);
|
||||
});
|
||||
@@ -0,0 +1,4 @@
|
||||
import { createApp } from "@vue-tui/runtime";
|
||||
import App from "./App";
|
||||
|
||||
createApp(App).mount();
|
||||
Reference in New Issue
Block a user