it-tools/src/routes/About.vue

17 lines
301 B
Vue
Raw Normal View History

2020-04-07 18:06:35 +02:00
<template>
<v-card class="single-card">
<v-card-title>About</v-card-title>
<v-card-text><Abstract /></v-card-text>
</v-card>
2020-04-07 18:06:35 +02:00
</template>
<script>
import Abstract from "../components/Abstract";
export default {
name: "About",
components : {
Abstract
},
}
</script>