Added changelog page
This commit is contained in:
parent
a0ef6e7dff
commit
e178ba4ac9
3 changed files with 33 additions and 0 deletions
|
@ -6,6 +6,9 @@
|
||||||
<li>
|
<li>
|
||||||
<BaseLogo id="logo" size="normal" />
|
<BaseLogo id="logo" size="normal" />
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
Take a look at the new <b-link to="/changelog">changelog here</b-link>.
|
||||||
|
</li>
|
||||||
<li class="right">
|
<li class="right">
|
||||||
<BaseUserDropdown />
|
<BaseUserDropdown />
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -6,6 +6,7 @@ import NotFound from "../views/NotFound.vue";
|
||||||
import Home from "../views/Home.vue";
|
import Home from "../views/Home.vue";
|
||||||
import History from "../views/History.vue";
|
import History from "../views/History.vue";
|
||||||
import Manage from "../views/Manage.vue";
|
import Manage from "../views/Manage.vue";
|
||||||
|
import Changelog from "../views/Changelog.vue";
|
||||||
|
|
||||||
Vue.use(VueRouter);
|
Vue.use(VueRouter);
|
||||||
|
|
||||||
|
@ -37,6 +38,11 @@ const routes = [
|
||||||
component: Home,
|
component: Home,
|
||||||
beforeEnter: requireAuth
|
beforeEnter: requireAuth
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/changelog",
|
||||||
|
name: "Changelog",
|
||||||
|
component: Changelog
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/logout",
|
path: "/logout",
|
||||||
name: "Logout",
|
name: "Logout",
|
||||||
|
|
24
src/views/Changelog.vue
Normal file
24
src/views/Changelog.vue
Normal 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>
|
Loading…
Reference in a new issue