1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/app/application.js

22 lines
312 B
JavaScript

"use strict";
import Vue from "vue";
import App from 'components/app';
import store from "store";
class Main {
constructor() {
console.log("App initialized.");
// create a root instance
new Vue({
el: '#app',
store,
render: h => h(App)
});
}
};
export default new Main;