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