view client/src/main.js @ 18:eef728039900

merge
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 21 Jun 2018 11:19:29 +0200
parents 88d0d60924cf
children 7ba0a77fd679
line wrap: on
line source

import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import "../node_modules/bootstrap/dist/css/bootstrap.min.css";
import "../node_modules/font-awesome/css/font-awesome.min.css";

Vue.config.productionTip = false;

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount("#app");