You are using the runtime-only build of Vue where the template compiler is not available.

1、npm install vue --save

在这里插入图片描述

2.导入

在这里插入图片描述

3.npm run build

发现打包过程没有任何错误,但是运行程序,没有出现想要的效果,而且浏览器报错:
在这里插入图片描述这个错误说的是我们使用的是runtime-only版本的Vue

4.解决办法

在webpack.config.js中写入:
You are using the runtime-only build of Vue where the template compiler is not available._第1张图片
再打包运行即可

好啦,内容就是这些,如有问题欢迎加入Web前端交流QQ群:827389615,一起讨论学习吖!

你可能感兴趣的:(Vue,vue)