美文网首页
Vue报错——Unknown custom element: <

Vue报错——Unknown custom element: <

作者: 前端召唤师 | 来源:发表于2019-04-26 12:04 被阅读0次

参考: https://blog.csdn.net/jiangyu1013/article/details/85676292

解决:除了import组件外,还要在components中添加


<template>

<div class="d-whole" >

<div class="shopSlideImg">

<shop-slide :shopImgsList="shopImgsList"></shop-slide>

</div>

</template>

<script>

import NoMore from './NoMore.vue'

import ShopSlide from './ShopSlide.vue'      //<<==

export default {

name: 'FlashSaleListX',

data() {

return {

shopImgsList:[ ]

}

},

components: {

NoMore,

ShopSlide             // <<==

}

}

</script>

相关文章

网友评论

      本文标题:Vue报错——Unknown custom element: <

      本文链接:https://www.haomeiwen.com/subject/umsfnqtx.html