Add empty page for changelogs

This commit is contained in:
Marcos Moura 2016-09-26 01:29:28 -03:00
parent d93aa2e834
commit 42da5df7fc
3 changed files with 23 additions and 0 deletions

View file

@ -130,6 +130,10 @@
</md-list-expand>
</md-list-item>
<md-list-item>
<router-link to="/changelog">Changelog</router-link>
</md-list-item>
<md-list-item>
<router-link to="/about">About</router-link>
</md-list-item>

View file

@ -0,0 +1,13 @@
<template>
<section>
<h1>Changelog</h1>
</section>
</template>
<script>
export default {
mounted() {
this.$root.pageTitle = 'Changelog';
}
};
</script>

View file

@ -2,6 +2,7 @@
import Introduction from './pages/Introduction';
import GettingStarted from './pages/GettingStarted';
import About from './pages/About';
import Changelog from './pages/Changelog';
import Error404 from './pages/Error';
/* Components */
@ -47,6 +48,11 @@ const main = [
path: '/about',
name: 'about',
component: About
},
{
path: '/changelog',
name: 'changelog',
component: Changelog
}
];