storj/web/bootstrap/src/main.ts
Yehor Butko 3e90b9e3b8
V3-1284 Node bootstrap web frontend (#1405)
* V3-1284 Node bootstrap web frontend
2019-03-05 13:19:43 +02:00

16 lines
307 B
TypeScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';
Vue.config.productionTip = false;
new Vue({
router,
render: (h) => h(App),
store,
}).$mount('#app');