basic project restructure, add router, boostrap, fix README

This commit is contained in:
Xevion
2020-08-12 19:47:45 -05:00
parent 82ca57c927
commit d6ec1b0867
9 changed files with 164 additions and 107 deletions

17
src/router.js Normal file
View File

@@ -0,0 +1,17 @@
import Vue from 'vue';
import Router from 'vue-router';
import Home from './components/Home.vue';
Vue.use(Router);
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{
path: '/',
name: 'Home',
component: Home,
}
],
});