cr-connect-bpmn/src/main.ts

14 lines
252 B
TypeScript
Raw Normal View History

2020-01-06 21:50:34 +00:00
import Vue from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import store from "./store";
Vue.config.productionTip = false;
new Vue({
router,
store,
render: h => h(App)
}).$mount("#app");