mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 10:43:52 +00:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
|
import Vue from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import store from './store'
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
new Vue({
|
||
|
store,
|
||
|
render: h => h(App)
|
||
|
}).$mount('#app')
|