You are using the runtime-only build of Vue where the template compiler is not available
image.png
原因分析:vue有两种形式的代码 compiler(模板)模式和runtime模式(运行时),vue模块的package.json的main字段默认为runtime模式, 指向了"dist/vue.runtime.common.js"位置
解决方法一、
报错后main.js代码:
import App from './App'
import router from