juggl/src/views/Changelog.vue

25 lines
426 B
Vue
Raw Normal View History

2021-04-13 00:38:55 +02:00
<template>
<LayoutMinimal title="Changelog">
<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";
export default {
name: "NotFound",
components: {
LayoutMinimal
}
};
</script>
<style lang="sass" scoped>
ul
list-style-type: '+ '
</style>