Added date to changelog

This commit is contained in:
Maximilian Giller 2021-04-13 11:55:45 +02:00
parent cac93173fc
commit d9cd7ae327

View file

@ -1,5 +1,8 @@
<template> <template>
<LayoutMinimal title="Changelog"> <LayoutMinimal title="Changelog">
<BaseTitle size="small">
12.04.2021
</BaseTitle>
<ul> <ul>
<li>Added toggle to change visibility of single projects and tags</li> <li>Added toggle to change visibility of single projects and tags</li>
</ul> </ul>
@ -9,11 +12,13 @@
<script> <script>
// @ is an alias to /src // @ is an alias to /src
import LayoutMinimal from "@/components/layout/LayoutMinimal"; import LayoutMinimal from "@/components/layout/LayoutMinimal";
import BaseTitle from "@/components/base/BaseTitle";
export default { export default {
name: "NotFound", name: "NotFound",
components: { components: {
LayoutMinimal LayoutMinimal,
BaseTitle
} }
}; };
</script> </script>