juggl/src/views/Changelog.vue
2021-04-13 11:55:45 +02:00

29 lines
555 B
Vue

<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>
</LayoutMinimal>
</template>
<script>
// @ is an alias to /src
import LayoutMinimal from "@/components/layout/LayoutMinimal";
import BaseTitle from "@/components/base/BaseTitle";
export default {
name: "NotFound",
components: {
LayoutMinimal,
BaseTitle
}
};
</script>
<style lang="sass" scoped>
ul
list-style-type: '+ '
</style>