front-end almost done | started back-end

This commit is contained in:
Amir Mohamadi
2020-11-23 19:39:26 +03:30
parent 95149f0e72
commit 80a7abafb7
191 changed files with 60163 additions and 950 deletions
+18
View File
@@ -0,0 +1,18 @@
<template>
<div class="col-12 mb-3">
<div class="row align-items-center justify-content-end title">
<h2>{{title}}</h2>
<slot/>
</div>
</div>
</template>
<script>
export default {
props: {
title: {
required: true
}
}
}
</script>