combine.fm/public/src/app.js
Jonathan Cremin 7bb0497ff4 Migrate all the things
* Migrates from Mongo to Postgres.
* Migrates from JSPM to Webpack.
* Migrates from React to Vuejs.
* Migrates from Bootstrap to Bulma.

Also:
* Fixes rendering of meta data in the document head tag.
2016-10-23 21:36:23 +01:00

12 lines
200 B
JavaScript

import Vue from 'vue';
import App from './app.vue';
import store from './store';
import router from './router';
const app = new Vue({
router,
store,
...App,
});
export { app, router, store };