12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
import Vue from 'vue';
|
|
import App from './App.vue';
|
|
import store from './store';
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
window.player = store.state;
|
|
|
|
new Vue({
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app');
|