🎨 Improve code readability by reformatting and updating function definitions and comments

This commit is contained in:
2026-01-28 18:18:55 +00:00
parent 1944b43af8
commit a24f766e37
154 changed files with 7261 additions and 117 deletions

View File

@@ -1,5 +1,6 @@
import { createApp } from 'vue';
import App from './App.vue';
import router from './router';
import './style.css';
createApp(App).mount('#app');
createApp(App).use(router).mount('#app');