initial commit

This commit is contained in:
grimhilt
2023-02-22 16:23:11 +01:00
commit 10843f4aaa
24 changed files with 12587 additions and 0 deletions

23
front/src/App.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
</template>
<script>
export default {
name: 'App',
components: {
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

BIN
front/src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

19
front/src/main.js Normal file
View File

@@ -0,0 +1,19 @@
import { createApp } from 'vue'
import App from './App.vue'
const routes = [
// { path: '/', component: Home },
// { path: '/about', component: About },
]
const router = VueRouter.createRouter({
history: VueRouter.createWebHashHistory(),
routes
});
const app = Vue.createApp({});
app.use(router);
app.mount('#app');
createApp(App).mount('#app')