project: init

This commit is contained in:
2022-02-10 13:44:04 +03:00
commit 9c2e819ebc
16 changed files with 8726 additions and 0 deletions

19
components/InfoCard.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<v-alert prominent dark :color="color" :icon="icon">
<div class="title">
{{ title }}
</div>
<div>{{ subTitle }}</div>
</v-alert>
</template>
<script>
export default {
props: {
icon: String,
title: String,
subTitle: Number,
color: String,
},
}
</script>