我正在尝试运行这个 Reddit 克隆。
我导入了不同类型的Vue CDN,
<script src="https://unpkg.com/vue@next"></script>
Uncaught TypeError: Vue.component is not a function"
我不确定我是否导入了错误版本的 Vue,或者我在 jsfiddle 上的设置是否错误。
var subreddit = Vue.component('subreddit',{
template: '#subreddit',
props: ['name'],
data: function () {
return { posts: [] }
},
created: function(){
this.$http.get("https://www.reddit.com/r/"+ this.name +"/top.json?limit=3")
.then(function(resp){
this.posts=resp.data.data.children;
});
}
});
完整代码在这里:
https://jsfiddle.net/jm0vs2kn/22/
蝴蝶不菲
相关分类