Use const instead of var in Vue instance

Reference to Pull Request #3871
This commit is contained in:
Donald Silveira
2016-08-12 11:43:47 -03:00
committed by GitHub
parent e79c0d222d
commit 4ee51720a3

View File

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