import process from "node:process"; import { createApp, Text } from "@vue-tui/runtime"; import { defineComponent } from "vue"; const App = defineComponent(() => () => Hello); const app = createApp(App); app.mount({ debug: true }); app.unmount(); await app.waitUntilExit(); process.stdout.write("DONE");