[Vue warn]: Failed to mount component: template or render function not defined.(转)

遇到这个问题,找了很久,看到一篇文章解决了,就此记录一下,方便以后查阅

这是一个坑

vue router 里有一个 模式叫做 命名视图

本来一个页面里面只能有一个路由视图 对应 一个组件,现在可以多个路由视图 对应 多个组件。

[Vue warn]: Failed to mount component: template or render function not defined.(转)_第1张图片

出错点

点击标签之后,中并没有内容出现。反而控制台中报错了。

[Vue warn]: Failed to mount component: template or render function not defined.(转)_第2张图片

原因

[Vue warn]: Failed to mount component: template or render function not defined.(转)_第3张图片

就是在写这里的时候,原来都是component,现在是components,多了一个s。

你可能感兴趣的:([Vue warn]: Failed to mount component: template or render function not defined.(转))