微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

查漏补缺——Failed to mount component: template or render function not defined这个问题怎么解决?

问题

如题所示,控制台报错如下:

vue.esm.js?efeb:628 [Vue warn]: Failed to mount component: template or render function not defined.

found in

---> <HzhLayoutFooter> at F:\hzh\src\components\layout\hzh-layout-footer.vue
       <Hzh> at F:\hzh\src\App.vue
         <Root>

答案

vue报错 Failed to mount component: template or render function not defined.

hzh-layout-footer这个文件添加以下代码

<template>
  
</template>

<script>
export default {

}
</script>

<style>

</style>

然后控制台就没有报错了。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐