refactor: move project to frontend directory

This commit is contained in:
wea_ondara
2023-10-08 11:20:02 +02:00
parent 2a9cfba4d8
commit 34b0135da7
79 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -0,0 +1,15 @@
<script lang="ts">
import {Options, Vue} from 'vue-class-component';
import MangaLists from '@/components/manga/MangaLists.vue';
@Options({
name: 'HomeView',
components: {MangaLists},
})
export default class HomeView extends Vue {
}
</script>
<template>
<MangaLists/>
</template>