inicio del proyecto

This commit is contained in:
2020-12-30 04:34:45 -06:00
parent 8ea648b9f2
commit 458835898b
19 changed files with 12810 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import Vue from "vue";
import App from "./App.vue";
import "bootstrap";
import "bootstrap/dist/css/bootstrap.min.css";
import VueRouter from "vue-router";
import { routes } from "./routes";
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue'
Vue.config.productionTip = false;
Vue.use(VueRouter);
Vue.use(BootstrapVue);
Vue.use(IconsPlugin);
const router = new VueRouter({
routes
});
new Vue({
el: "#app",
render: h => h(App),
router
});