Skip to content

Instantly share code, notes, and snippets.

@jbenner-radham
Last active February 18, 2018 20:05
Show Gist options
  • Select an option

  • Save jbenner-radham/330b0cf7e2311af5e7e8e3b2fad54c12 to your computer and use it in GitHub Desktop.

Select an option

Save jbenner-radham/330b0cf7e2311af5e7e8e3b2fad54c12 to your computer and use it in GitHub Desktop.
The JS entry point for a Vue.js single file component setup via webpack and Babel.
'use strict';
import App from '../components/App.vue';
import Vue from 'vue';
new Vue({
el: '#app',
render: h => h(App)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment