Skip to content

Commit

Permalink
Removed unused prop
Browse files Browse the repository at this point in the history
  • Loading branch information
max01app committed Jan 31, 2019
1 parent 0f68833 commit c72c63e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/VueRssFeed.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="vue-rss-feed">
<Feed :feedUrl="feedUrl" :name="name" :limit="limit" :loadMore="loadMore"/>
<Feed :feedUrl="feedUrl" :name="name" :limit="limit"/>
</div>
</template>

Expand All @@ -15,8 +15,7 @@ export default {
props: {
feedUrl: String,
name: String,
limit: Number,
loadMore: Boolean
limit: Number
}
};
</script>
Expand Down
3 changes: 1 addition & 2 deletions src/demo/Demo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<el-row>
<el-col :span="12">
<div class="preview-vue-rss-feed">
<VueRssFeed :feedUrl="feedUrl" :name="name" :limit="limit" :loadMore="loadMore"/>
<VueRssFeed :feedUrl="feedUrl" :name="name" :limit="limit"/>
</div>
</el-col>
<el-col :span="12">
Expand Down Expand Up @@ -60,7 +60,6 @@ export default {
feedUrl: "https://rss.app/feeds/hmsyAr3PyniBpmOd.xml",
name: "",
limit: 5,
loadMore: false,
rssFeedForm: {
feedUrl: "https://rss.app/feeds/hmsyAr3PyniBpmOd.xml"
}
Expand Down

0 comments on commit c72c63e

Please sign in to comment.