
The chat client itself is just a throwaway project. The SocketIO system will be used to send realtime updates about jobs, tasks, and workers to the web frontend.
32 lines
587 B
JavaScript
32 lines
587 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import {
|
|
FormInputPlugin,
|
|
NavbarPlugin,
|
|
LayoutPlugin,
|
|
IconsPlugin,
|
|
BCard,
|
|
BInputGroup,
|
|
BButton,
|
|
} from "bootstrap-vue";
|
|
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
import "bootstrap-vue/dist/bootstrap-vue.css";
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
Vue.use(FormInputPlugin);
|
|
Vue.use(NavbarPlugin);
|
|
Vue.use(LayoutPlugin);
|
|
Vue.component("b-card", BCard);
|
|
Vue.component("b-input-group", BInputGroup);
|
|
Vue.component("b-button", BButton);
|
|
Vue.use(IconsPlugin);
|
|
|
|
var app = new Vue({
|
|
render: h => h(App),
|
|
|
|
});
|
|
|
|
app.$mount("#app");
|