juggl/src/views/Changelog.vue

42 lines
790 B
Vue
Raw Normal View History

2021-04-13 00:38:55 +02:00
<template>
<LayoutMinimal title="Changelog">
2021-07-28 00:01:28 +02:00
<BaseTitle size="small">
27.07.2021
</BaseTitle>
<ul>
<li>Added simple statistics</li>
</ul>
2021-05-21 19:19:44 +02:00
<BaseTitle size="small">
2021-07-27 23:14:59 +02:00
21.05.2021
2021-05-21 19:19:44 +02:00
</BaseTitle>
<ul>
<li>Visual tweaks</li>
</ul>
2021-04-13 11:55:45 +02:00
<BaseTitle size="small">
2021-07-27 23:14:59 +02:00
12.04.2021
2021-04-13 11:55:45 +02:00
</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 {
2021-07-27 23:06:53 +02:00
name: "Changelog",
2021-04-13 00:38:55 +02:00
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>