mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 04:03:51 +00:00
17 lines
317 B
JavaScript
17 lines
317 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')
|