[Vuejs]-Vue 2.x + Laravel 5.4 not working in Explorer

0👍

I succeeded to resolve the problem by running the babel code, echoing the results to specific location:

my .bashrc:

{
    "presets": ["es2015"]
}

command:

./node_modules/.bin/babel public/js/app.js > public/js/out.js

Then in the layouts files I included public/js/out.js file instead of public/js/app.js

Leave a comment