Last active
February 18, 2018 20:05
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '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