juggl/src/views/Changelog.vue

36 lines
664 B
Vue
Raw Normal View History

2021-04-13 00:38:55 +02:00
<template>
<LayoutMinimal title="Changelog">
2021-05-21 19:19:44 +02:00
<BaseTitle size="small">
21.05.2021
</BaseTitle>
<ul>
<li>Visual tweaks</li>
</ul>
2021-04-13 11:55:45 +02:00
<BaseTitle size="small">
12.04.2021
</BaseTitle>
2021-04-13 00:38:55 +02:00
<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";
2021-04-13 11:55:45 +02:00
import BaseTitle from "@/components/base/BaseTitle";
2021-04-13 00:38:55 +02:00
export default {
name: "NotFound",
components: {
2021-04-13 11:55:45 +02:00
LayoutMinimal,
BaseTitle
2021-04-13 00:38:55 +02:00
}
};
</script>
<style lang="sass" scoped>
ul
list-style-type: '+ '
</style>