Browse Source

Bind to #app instead of body

Erik Telford 8 years ago
parent
commit
6f9a450f5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/assets/js/app.js

+ 1 - 1
resources/assets/js/app.js

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