Initial commit of code

This commit is contained in:
Oliver Traber 2022-01-03 22:55:58 +01:00
parent d27b0f7ea2
commit ba484d3d9a
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C
8 changed files with 8792 additions and 0 deletions

21
src/App.vue Normal file
View file

@ -0,0 +1,21 @@
<template>
</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;
color: #2c3e50;
}
</style>

4
src/main.js Normal file
View file

@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')