1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-31 02:59:37 +02:00
it-tools/src/routes/About.vue
Corentin Thomasset c4bfad764c refactor: indent/format
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
2020-06-07 13:39:45 +02:00

19 lines
No EOL
313 B
Vue

<template>
<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>