mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
17 lines
328 B
JavaScript
17 lines
328 B
JavaScript
import Vue from 'vue';
|
|
import './plugins/bootstrap-vue';
|
|
import App from './App.vue';
|
|
import store from './store';
|
|
import router from './router';
|
|
import { apiStore } from './shared/apiService';
|
|
|
|
apiStore.store = store;
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
store,
|
|
router,
|
|
render: (h) => h(App),
|
|
}).$mount('#app');
|