2018-04-28 20:56:20 +01:00
|
|
|
// import { style } from 'bulma/css/bulma.css';
|
2016-10-03 13:31:29 +01:00
|
|
|
import { sync } from 'vuex-router-sync';
|
|
|
|
import { app, store, router } from './app';
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => { // eslint-disable-line no-undef
|
|
|
|
store.replaceState(window.__INITIAL_STATE__); // eslint-disable-line
|
|
|
|
sync(store, router);
|
|
|
|
app.$mount('#app');
|
|
|
|
});
|