Added changelog page

This commit is contained in:
Maximilian Giller 2021-04-13 00:38:55 +02:00
parent a0ef6e7dff
commit e178ba4ac9
3 changed files with 33 additions and 0 deletions

View file

@ -6,6 +6,9 @@
<li>
<BaseLogo id="logo" size="normal" />
</li>
<li>
Take a look at the new <b-link to="/changelog">changelog here</b-link>.
</li>
<li class="right">
<BaseUserDropdown />
</li>

View file

@ -6,6 +6,7 @@ import NotFound from "../views/NotFound.vue";
import Home from "../views/Home.vue";
import History from "../views/History.vue";
import Manage from "../views/Manage.vue";
import Changelog from "../views/Changelog.vue";
Vue.use(VueRouter);
@ -37,6 +38,11 @@ const routes = [
component: Home,
beforeEnter: requireAuth
},
{
path: "/changelog",
name: "Changelog",
component: Changelog
},
{
path: "/logout",
name: "Logout",

24
src/views/Changelog.vue Normal file
View file

@ -0,0 +1,24 @@
<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>