[Vue警告]:无法解析组件

时间:2015-04-09 04:59:40

标签: javascript vue.js

这是我的代码:

window.onload = function () {
var main = new Vue({
    el: '#main',
    data: {
        currentActivity: 'home'
    }
});
Vue.component('home', {
    template: '#home-template'
});
};

这是我的模板:

<head>
     <script type="text/x-template" id="home-template">
      <div class="banner dark">
        <div class="content">says some shit</div>
      </div>
      <div class="banner light">
        <div class="content">says some other shit</div>
      </div>
    </script>
</head>

当我加载页面时,我收到此警告:

[Vue warn]: Failed to resolve component: home

并出现此错误:

Uncaught TypeError: Cannot read property '_refID' of undefined

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您必须在创建Vue ViewModel之前({1}}之前创建Vue.component,或者在new Vue({})事件中的ViewModel内创建Vue.component

以下是jsfiddle第一种方法,jsfiddle显示第二种方法。