mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00
17 lines
No EOL
301 B
Vue
17 lines
No EOL
301 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> |