chore(web-app): init

This commit is contained in:
fastium
2025-03-31 12:01:47 +02:00
parent e9c89fa123
commit fb08cdbf0d
13 changed files with 12798 additions and 0 deletions

27
web-app/src/App.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
</template>
<script lang="ts">
import { Options, Vue } from 'vue-class-component'
import HelloWorld from './components/HelloWorld.vue'
@Options({
components: {
HelloWorld
}
})
export default class App extends Vue {}
</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>