Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Arafat-Alam/f6d160c06b236c43c54deea09682a26b to your computer and use it in GitHub Desktop.
Save Arafat-Alam/f6d160c06b236c43c54deea09682a26b to your computer and use it in GitHub Desktop.
app.js
import Vue from 'Vue';
import App from './components/App.vue';
import VueRouter from 'vue-router';
import router from './route';
Vue.use(VueRouter);
export default new Vue({
router,
render: h => h(App)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment