slitscan/src/main.js

16 lines
358 B
JavaScript
Raw Normal View History

2018-01-17 17:59:50 +01:00
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
2019-10-31 15:51:31 +01:00
import Vue from "vue";
import App from "./App";
2018-01-17 17:59:50 +01:00
2019-10-31 15:51:31 +01:00
Vue.config.productionTip = false;
2018-01-17 17:59:50 +01:00
2019-10-31 15:51:31 +01:00
Vue.prototype.$bus = new Vue({});
2018-01-17 17:59:50 +01:00
/* eslint-disable no-new */
new Vue({
2019-10-31 15:51:31 +01:00
el: "#app",
template: "<App/>",
components: {App},
});