begin UI implementation

This commit is contained in:
janis
2023-05-26 12:43:43 +02:00
parent 7f801ce59f
commit 35adcb0148
3 changed files with 103 additions and 28 deletions

View File

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

View File

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