1
1
# vue-rss-feed
2
- A simple componenet to embed beautiful RSS feeds with Vuejs
2
+ A simple component to embed beautiful RSS feeds with Vuejs
3
3
4
4
## Demo
5
5
[ demo] ( https://rssapp.github.io/vue-rss-feed/ )
@@ -25,7 +25,7 @@ export default {
25
25
return {
26
26
feedUrl: " https://rss.app/feeds/hmsyAr3PyniBpmOd.xml" ,
27
27
name: " " ,
28
- limit: 5 ,
28
+ limit: 5 ,
29
29
};
30
30
},
31
31
};
@@ -36,17 +36,17 @@ Then use it in your template
36
36
``` HTML
37
37
<template >
38
38
<VueRssFeed :feedUrl =" feedUrl" :name =" name" :limit =" limit" />
39
- </template >
39
+ </template >
40
40
```
41
41
42
42
## Props
43
43
44
44
45
- | name | type | default | description |
46
- | --------------- | -------------------------------- | ---------- | ------------------------------------- --------------------------------- |
47
- | feedUrl | String | | RSS Feed URL |
48
- | limit | Number | 5 | Number of items to render |
49
- | Name | String | | Pass a name to replace feed title |
45
+ | name | type | default | description |
46
+ | ------- | ------ | ------- | --------------------------------- |
47
+ | feedUrl | String | | RSS Feed URL |
48
+ | limit | Number | 5 | Number of items to render |
49
+ | Name | String | | Pass a name to replace feed title |
50
50
51
51
52
52
0 commit comments