Skip to content

Instantly share code, notes, and snippets.

@praneetloke
Created June 7, 2018 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save praneetloke/89bdd03d607f2c05ba0b5a497bfc49ac to your computer and use it in GitHub Desktop.
Save praneetloke/89bdd03d607f2c05ba0b5a497bfc49ac to your computer and use it in GitHub Desktop.
The default main.js file created by vue-cli for a new project
import Vue from 'vue';
import App from './App';
import router from './router';
Vue.config.productionTip = false;
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
render: h => h(App),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment