mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-31 02:59:37 +02:00
19 lines
No EOL
313 B
Vue
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> |