This repository has been archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
<template> | ||
<container> | ||
<cover /> | ||
<page> | ||
<section-header headline="Lebenslauf" /> | ||
</container> | ||
</page> | ||
<page> | ||
<section-header headline="Sonstiges" /> | ||
</page> | ||
</template> | ||
|
||
<script setup> | ||
import Container from "@/views/Container.vue"; | ||
import Cover from "@/views/pages/Cover.vue"; | ||
import Page from "@/views/pages/Page.vue"; | ||
import SectionHeader from "@/components/SectionHeader.vue"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<template> | ||
<page> | ||
<section-header headline="Cover" /> | ||
</page> | ||
</template> | ||
|
||
<script setup> | ||
import Page from "@/views/pages/Page.vue"; | ||
import SectionHeader from "@/components/SectionHeader.vue"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div class="my-16 break-after-page"> | ||
<slot /> | ||
</div> | ||
</template> | ||
|
||
<script setup></script> |