Install Vue project with VueCLI

This commit is contained in:
2020-12-03 18:44:11 +01:00
parent e7f8b93c19
commit 36bf9b477d
27 changed files with 11496 additions and 2 deletions

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

@@ -0,0 +1,29 @@
import Vue from 'vue';
import VueRouter from 'vue-router';
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 router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes,
});
export default router;