diff --git a/src/templates/Main.vue b/src/templates/Main.vue
index 7176f8e..5a534da 100644
--- a/src/templates/Main.vue
+++ b/src/templates/Main.vue
@@ -17,9 +17,12 @@
class="max-w-full w-full grow flex flex-col divide-y-2 divide-gray-300 bg-white rounded-lg justify-center overflow-hidden"
>
+
-
@@ -51,6 +54,10 @@ export default defineComponent({
type: Boolean,
default: true,
},
+ title: {
+ type: String,
+ default: "Titel",
+ },
},
computed: {
...mapState(useNavigationStore, ["activeLink", "activeNavigation"]),
@@ -60,6 +67,9 @@ export default defineComponent({
rootRoute() {
return ((this.$route?.name as string) ?? "").split("-")[0];
},
+ topBar() {
+ return this.$slots.topBar;
+ },
diffMain() {
return this.$slots.diffMain;
},