chore: align Vue file conventions (#137)

- document Vue file authoring conventions
- rename runtime/example component files to kebab-case
- update imports and docs references
This commit is contained in:
Yunfei He
2026-06-05 08:28:59 +08:00
committed by GitHub
parent 5d071d44ab
commit 7f3b0ca40e
34 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -5,6 +5,6 @@
// Controls: space / ↑ / w to flap, q or Ctrl-C to quit, r to restart after dying.
import { createApp } from "@vue-tui/runtime";
import App from "./App.vue";
import App from "./app.vue";
createApp(App).mount();