This commit is contained in:
jslightham
2020-03-26 20:17:32 -04:00
parent 52d2d79548
commit a35b789e16
14 changed files with 1234 additions and 61 deletions

View File

@@ -1,6 +1,12 @@
import Vue from 'vue'
import App from './App.vue'
import Buefy from 'buefy'
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
// Install BootstrapVue
Vue.use(BootstrapVue)
// Optionally install the BootstrapVue icon components plugin
Vue.use(IconsPlugin)
Vue.use(Buefy)
Vue.config.productionTip = false
@@ -16,6 +22,7 @@ Vue.config.productionTip = false;
import HelloWorld from './components/HelloWorld.vue';
import Login from './components/Login.vue';
import Home from './components/Home.vue';
const routes = [
{
@@ -27,6 +34,11 @@ const routes = [
name: 'login',
path: '/login',
component: Login
},
{
name: 'calendar',
path: '/calendar',
component: Home
}
];