This commit is contained in:
2025-12-31 17:18:50 +07:00
parent 772e84c761
commit 16f64c5e4b
53 changed files with 4247 additions and 82 deletions

11
src/client.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createApp } from './main';
import 'uno.css';
async function render() {
const { app, router } = createApp();
router.isReady().then(() => {
app.mount('body', true)
})
}
render().catch((error) => {
console.error('Error during app initialization:', error)
})