4c2ebe8501
- ci.tsx: Static items + counter (non-interactive/CI behavior) - ci-debug.tsx: debug mode rendering - ci-debug-after-exit.tsx: debug mode exit + DONE output Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { createApp, Text } from "@vue-tui/runtime";
|
|
import { defineComponent } from "vue";
|
|
|
|
const App = defineComponent(() => () => <Text>Hello</Text>);
|
|
|
|
const app = createApp(App);
|
|
app.mount({ debug: true });
|