Migrate to Vue.js #28

Merged
jakob.scheid merged 22 commits from feature/migrate-to-vue-js into main 2026-05-07 14:20:13 +02:00
3 changed files with 9 additions and 7 deletions
Showing only changes of commit d4814edc65 - Show all commits
+1
View File
@@ -1,5 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import './styles/common.css'
createApp(App).use(router).mount('#app')
+8
View File
@@ -0,0 +1,8 @@
body {
margin: 0;
font-size: 16px;
}
#app {
min-height: 100vh;
}
-7
View File
@@ -1,10 +1,3 @@
body {
margin: 0;
min-height: 100vh;
background-color: #ffffff;
font-size: 16px;
}
form {
display: flex;
justify-content: center;