nuxt 微波组件报错
在循环里面添加微博组件:
<div class="itemlist" v-for='itemw in weiboList'>
<div class="titleDiv">
<div class="textArt" :class="{'textActive':!itemw.state}" v-html='itemw.content'></div>
</div>
<wb:like appkey="5q5ekV" type="simple"></wb:like>
<wb:share-button appkey="333" :title="itemw.content" addition="simple" type="button" ralateUid="22" language="zh_cn""></wb:share-button>
<wb:follow-button uid="1" type="red_1" width="67" height="24"></wb:follow-button>
</div>
当前界面里面引用:
head() {
return {
title: this.mataTitle,
meta: [
{property:'og:type',content: 'article',name:'type'},
{property:'og:url',content: 'http://m.weibo.cn/2190519260',name:'url'},
{property:'og:title',content: '',name:'title'},
{property:'og:description',content: '文章内容描述'}
],
script: [
{ src: 'https://tjs.sjs.sinajs.cn/open/api/js/wb.js' }
]
}
},
接口方法:
mounted: function () {
// 微博接口
http.get('weibo/list').then(function (response) {
_this.weiboList = response.list;
})
}
组件报错:
但是我如果把组件写在循环外面虽然报错但是会显示组件,为什么写在循环里面就不显示组件。
并
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看报错信息是
wb:follow-button
组件未注册