combine.fm/public/src/app.js

13 lines
200 B
JavaScript
Raw Normal View History

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 };