I'm looking to incorporate Vue into my laravel 5.4 application. When I use Vue without laravel, I can see the vue devtools inspection tab in Chrome. However, within my laravel app, the Vue tab is not visible in the Chrome console even though the chrome vue devtool extension indicates that Vue.js has been detected.
How can I enable the Vue devtool inspection within my laravel app?
I have attempted
Vue.config.debug = true;
Vue.config.devtools = true;
within my app.js file but have had no success.
Thank you.