vue-cli3 前端构建失败

需要安装一个Html编辑器提示报错

You are using the runtime-only build of Vue where the template compiler is not available. 
Either pre-compile the templates into render functions, or use the compiler-included build.
您正在使用Vue的仅运行时构建,其中模板编译器不可用。
要么将模板预编译为呈现函数,要么使用编译器包含的构建。

解决方法:
vue.config.js 中修改

runtimeCompiler: true,

再次运行 解决问题!