×

JavaScript教程

Vue warn]: Component is missing template or render function.

dede58织梦模板 dede58织梦模板 发表于2024-06-24 浏览7779 评论0
警告:Component is missing template or render function. 问题声明: 组件缺少模板或渲染功能。 解决问题 方式一: 在写vue项目时,网页没有加载出来东西一片空白,然后控制台出现黄色的警告: 原因是:在引入模块的时候没有写后缀!!! 加上.vue后就可以正常显示了。 原因: 其实按道理,webpack的规则是允许 .vue .js 文件在引入的时候省略文件名后缀的。 import test from ‘./test.vue’ i