码迷,mamicode.com
首页 > 其他好文 > 详细

vue学习问题总结(一)

时间:2017-11-28 19:54:35      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:模版   vue   option   ide   元素   reg   correct   custom   错误信息   

  1. 使用comopontent组件报错
    错误信息:vue.js:491 [Vue warn]: Unknown custom element: <todo-item> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
    代码:
    <p>
       使用component组件<br>
       <todo-item></todo-item>
    </p>
    Vue.component(‘todo-item‘,{
        template:‘I am a component‘
    });

    解决办法:将vue的全局注册提取到body的上面,html中就可以引用了

  2. 仍然使用上面的js代码,会报出第二个错误
    错误信息:Component template requires a root element, rather than just text.
    解决办法:错误提示中说组件模版中需要一个根元素,而不是文本,将里面的tempate增加html标签即可,更改完的代码
    Vue.component(‘todo-item‘,{
        template:"<li>I am a component</li>"
    });

     

vue学习问题总结(一)

标签:模版   vue   option   ide   元素   reg   correct   custom   错误信息   

原文地址:http://www.cnblogs.com/blueskyli/p/7911391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!