chrome浏览器安装插件vue Devtools后,允许vue页面没有出现vue的调试界面,把鼠标移动到vue图标上提示 Vue.js is detected on this page. Open DevTools and look for the Vue panel.
解决方法。进入开发项目main.js中。
import Vue from 'vue'
vue.config.devtools = true;
参考: https://blog.csdn.net/tangxiujiang/article/details/80616065