[Vuejs]-Vue DevTools could detect Vue.js but does not show in F12 panel

0👍

The possible reason maybe vue devtools can’t detect vue code, you can test it by https://vuejs.org/index.html.

0👍

Change the vue source <script src="//cdn.bootcss.com/vue/2.5.17/vue.min.js"></script>
to <script src="//cdn.bootcss.com/vue/2.5.17/vue.js"></script> could solve this issue

Leave a comment