refactor: restructure project to classic MVC pattern

This commit is contained in:
2025-09-09 19:57:43 +02:00
parent a28728af2a
commit 2a8d5d093c
58 changed files with 1601 additions and 1991 deletions

15
src/main.ts Normal file
View File

@@ -0,0 +1,15 @@
import {createApp} from "vue"
import "./style.css"
import VueTyper from 'vue3-typer'
import "vue3-typer/dist/vue-typer.css"
import App from "./App.vue";
const app = createApp(App)
app.component('VueTyper', VueTyper)
// Global error handler
app.config.errorHandler = (err, vm, info) => {
console.error("Global error:", err, info)
}
app.mount("#app")