Files
transfer/app/src/upload.js
Christoph Wiechert 30d6918b83 init
2017-04-23 13:41:29 +02:00

18 lines
320 B
JavaScript

"use strict";
import 'babel-polyfill';
import Vue from 'vue';
import Upload from './Upload.vue';
import store from './Upload/store.js';
new Vue({
el: '#upload',
store,
render: h => h(Upload),
beforeCreate() {
this.$store.dispatch('config/fetch');
}
});
window.PSITRANSFER_VERSION = PSITRANSFER_VERSION;