add latest

This commit is contained in:
2022-09-23 00:22:02 +01:00
parent 2febfacb3f
commit 0fef09ff66
13 changed files with 278 additions and 256 deletions

View File

@@ -0,0 +1,25 @@
<template>
<q-card flat bordered square class="col-2 bg-grey-3 q-ma-sm border">
<q-card-section>
<div class="text-subtitle1 text-uppercase text-center">
{{ title }}
</div>
</q-card-section>
<q-separator inset class="q-mb-sm" />
<slot></slot>
</q-card>
</template>
<script setup lang="ts">
defineProps<{
title: string;
}>();
</script>
<style lang="scss">
.border {
border: 0.1rem solid #2e3f4e;
}
</style>