Add bootstrap vue, bootswatch and landing page

This commit is contained in:
2020-04-12 14:01:55 +02:00
parent e4995ac340
commit 5a9ffc36e1
9 changed files with 130 additions and 128 deletions
+9 -17
View File
@@ -4,26 +4,18 @@ import Home from '../views/Home.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
}
const routes = [
{
path: '/',
name: 'Home',
component: Home
}
]
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes
mode: 'history',
base: process.env.BASE_URL,
routes
})
export default router