Grundeinrichtung vue.js, vuetify, vue-router, papa-parse

This commit is contained in:
Daniel Spittank 2021-11-13 14:33:18 +01:00
parent c603c63a62
commit 18970db9dd
16 changed files with 27962 additions and 62 deletions

5
src/views/About.vue Normal file
View file

@ -0,0 +1,5 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>

18
src/views/Home.vue Normal file
View file

@ -0,0 +1,18 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
export default {
name: 'Home',
components: {
HelloWorld
}
}
</script>