2016-12-10 63 views
0

如何正确使用组件中的其他组件?这也表明我将两个组件中的嵌套组件

import Item-card from './components/Item-card.vue'; 

components::{ 
    'item-card':Item-card 
}, 

后语法错误的警告更换模板如下:变更后

<template> 
    <div class="item-card"> 
    <item-card v-for="product in products"></item-card> 
    </div> 
</template> 

<script> 
    import Item-card from './components/Item-card.vue'; 
    export default { 
    components:{ 
     'item-card':Item-card 
    }, 
    data(){ 
     return{ 
     products:'' 
     } 
    }, 
    mounted(){ 
     ProductEvent.$on('products', function (products){ 
     this.products = products 
     }.bind(this)); 
    } 
    } 
</script> 

UPDATE1

错误代码

import Item-card from './components/Item-card.vue'; 

import itemCard from './components/Item-card.vue'; 
    export default { 
    components::{ 
     'item-card':itemCard 
    }...., 

ERROR in ./~/buble-loader!./~/vue-loader/lib/selector.js?type=script&index=0!./resources/assets/js/components/Item-list.vue Module build failed: SyntaxError: Unexpected token (10:13) at Parser.pp$4.raise (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:2221:15) at Parser.pp.unexpected (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:603:10) at Parser.pp$3.parseExprAtom (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1822:12) at Parser.parseExprAtom (C:\xampp\htdocs\soyegg\node_modules\buble\dist\buble.umd.js:656:26) at Parser.pp$3.parseExprSubscripts (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1715:21) at Parser.pp$3.parseMaybeUnary (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1692:19) at Parser.pp$3.parseExprOps (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1637:21) at Parser.pp$3.parseMaybeConditional (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1620:21) at Parser.pp$3.parseMaybeAssign (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1597:21) at Parser.pp$3.parsePropertyValue (C:\xampp\htdocs\soyegg\node_modules\buble\node_modules\acorn\dist\acorn.js:1998:89) @ ./resources/assets/js/components/Item-list.vue 4:18-103 @ ./resources/assets/js/app.js

+0

你得到的警告是什么? – Saurabh

回答

2

尝试以下操作:

<script> 
    import itemCard from './components/Item-card.vue'; 
    export default { 
    components:{ 
     'item-card': itemCard 
    }, 
    data(){ 
     ......... 
     ......... 

同时检查文件名是否输入正确。

+0

这就是我的想法,但错误仍然存​​在,我认为在'components'之后的答案中有一个额外的冒号。谢谢! – warmjaijai

+0

所以我不应该把'/ component'放在文件路径中 – warmjaijai