Add animations, add album page, add left panel autoclosing

This commit is contained in:
2020-09-14 17:12:55 +03:00
parent d2d5ce2dd9
commit 57812be1fd
7 changed files with 118 additions and 38 deletions

View File

@@ -1,8 +1,9 @@
import Vue from 'vue'
import VueRouter, { RouteConfig } from 'vue-router'
import Home from '@/views/Home.vue'
import About from '@/views/About.vue'
import Home from '@/views/Home.vue';
import About from '@/views/About.vue';
import Album from '@/views/Album.vue';
Vue.use(VueRouter)
@@ -16,6 +17,11 @@ Vue.use(VueRouter)
path: '/about',
name: 'About Me',
component: About
},
{
path: '/album/:name',
name: 'Album Page',
component: Album,
}
]