1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-03 20:45:18 +02:00

feat: abstract

Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
Corentin Thomasset 2020-06-06 23:41:09 +02:00 committed by Corentin THOMASSET
parent 9f4a257599
commit b3d63734f0
3 changed files with 116 additions and 24 deletions

View file

@ -1,5 +1,17 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
<v-card class="single-card">
<v-card-title>About</v-card-title>
<v-card-text><Abstract /></v-card-text>
</v-card>
</template>
<script>
import Abstract from "../components/Abstract";
export default {
name: "About",
components : {
Abstract
},
}
</script>