You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bit4sat/web/src/index.js

21 lines
327 B
JavaScript

import './styles/index.css';
import Vue from 'vue';
import App from './App.vue';
import GetWorker from './workerInterface.js';
import { WS } from './Websocket.js';
window.ws = new WS()
new WS()
window.app = new Vue({
el: '#app',
template: '<App/>',
components: { App }
});
window.worker = GetWorker('main');