Skip to content
Snippets Groups Projects
Commit d8f3622e authored by syuilo's avatar syuilo
Browse files

fix

parent 0bbde336
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ const items = ref([]);
const fetching = ref(true);
const tick = () => {
fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.props.url}`, {}).then(res => {
fetch(`https://api.rss2json.com/v1/api.json?rss_url=${widgetProps.url}`, {}).then(res => {
res.json().then(feed => {
items.value = feed.items;
fetching.value = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment