Commit 4ee51720 authored by Donald Silveira's avatar Donald Silveira Committed by GitHub

Use const instead of var in Vue instance

Reference to Pull Request #3871
parent e79c0d22
...@@ -15,6 +15,6 @@ require('./bootstrap'); ...@@ -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'
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment