add empty vue application

This commit is contained in:
Tim Wundenberg
2021-07-28 18:18:19 +02:00
parent 9de1629e13
commit 06d31c558d
12 changed files with 12511 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div>
<img alt="Vue logo" src="./assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
</div>
</template>
<script>
import HelloWorld from "./components/HelloWorld.vue";
export default {
name: "App",
components: {
HelloWorld,
},
};
</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>