Use const instead of var in Vue instance
Reference to Pull Request #3871
This commit is contained in:
parent
e79c0d222d
commit
4ee51720a3
|
@ -15,6 +15,6 @@ require('./bootstrap');
|
|||
|
||||
Vue.component('example', require('./components/Example.vue'));
|
||||
|
||||
var app = new Vue({
|
||||
const app = new Vue({
|
||||
el: 'body'
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue