This commit is contained in:
2020-07-05 23:02:00 -05:00
commit cd33bcef99
21 changed files with 13792 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import Vue from "vue";
import App from "./App.vue";
import BootstrapVue from "bootstrap-vue";
import "bootstrap/dist/css/bootstrap.css";
import "bootstrap-vue/dist/bootstrap-vue.css";
import VueRouter from "vue-router";
import { routes } from "./routes";
Vue.use(BootstrapVue);
Vue.config.productionTip = false;
Vue.use(VueRouter);
const router = new VueRouter({
routes
});
new Vue({
el: "#app",
render: h => h(App),
router
});