Timeline view

This commit is contained in:
Eliot Berriot 2018-03-02 00:14:08 +01:00
parent e319f5933e
commit e231b71701
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
3 changed files with 61 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import Router from 'vue-router'
import PageNotFound from '@/components/PageNotFound'
import About from '@/components/About'
import Home from '@/components/Home'
import InstanceTimeline from '@/views/instance/Timeline'
import Login from '@/components/auth/Login'
import Signup from '@/components/auth/Signup'
import Profile from '@/components/auth/Profile'
@ -39,6 +40,11 @@ export default new Router({
name: 'about',
component: About
},
{
path: '/activity',
name: 'activity',
component: InstanceTimeline
},
{
path: '/login',
name: 'login',