为了账号安全,请及时绑定邮箱和手机立即绑定

template or render function not defined.

标签:
Vue.js

下午写 Vue $parent 实例时,总是遇到这个问题,不禁让人陷入沉思


240

1.gif

Vue,醒醒啊,你怎么了,贴上子组件源代码

<template>
  <div>
    <child-component1></child-component1>
    <child-component2></child-component2>
    <button v-on:click="showChildComponentData">显示子组件的数据</button>
  </div></template><script>export default{  components: {    'child-component1': {      template: '#child-component1',      data: function () {        return {          msg: 'child component 111111'
        }
      }
    },    'child-component2': {      template: '#child-component2',      data: function () {        return {          msg: 'child component 222222'
        }
      }
    }
  },  methods: {    showChildComponentData: function () {      for (var i = 0; i < this.$children.length; i++) {
        alert(this.$children[i].msg)
      }
    }
  }
}</script>

这是报错信息:


660

1.png

修改后的代码:

<template>
  <div>
    <child-component1></child-component1>
    <child-component2></child-component2>
    <button v-on:click="showChildComponentData">显示子组件的数据</button>
  </div></template><script>export default{  components: {    'child-component1': {      template: '<p>I am ok</p>',      data: function () {        return {          msg: 'child component 111111'
        }
      }
    },    'child-component2': {      template: '<p>ok</p>',      data: function () {        return {          msg: 'child component 222222'
        }
      }
    }
  },  methods: {    showChildComponentData: function () {      for (var i = 0; i < this.$children.length; i++) {
        alert(this.$children[i].msg)
      }
    }
  }
}</script>

这样就好了,原因是 Vue 的构建,运行时构建删除了模板编译的功能,因此无法支持带 template 属性的 Vue 实例选项。



作者:H_婷
链接:https://www.jianshu.com/p/ecc97f18286c


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消