Bind to #app instead of body

This commit is contained in:
Erik Telford 2016-10-02 21:33:42 -05:00
parent 1117be09e7
commit 6f9a450f5c
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ require('./bootstrap');
Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: 'body'
el: '#app'
});