First commit

This commit is contained in:
2018-02-28 23:30:57 +03:00
commit bc2a349f9a
34 changed files with 10777 additions and 0 deletions

27
src/router/index.js Normal file
View File

@@ -0,0 +1,27 @@
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/components/Home'
import Projects from '@/components/Projects'
import About from '@/components/About'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/projects',
name: 'Projects',
component: Projects
},
{
path: '/about',
name: 'About',
component: About
}
]
})