diff --git a/vue/src/components/RssFeeds.vue b/vue/src/components/RssFeeds.vue index 7e6b9a7..d79e4c5 100644 --- a/vue/src/components/RssFeeds.vue +++ b/vue/src/components/RssFeeds.vue @@ -2,11 +2,13 @@ import { ref, unref, onMounted, nextTick } from 'vue'; import axios from 'axios'; import { Readability } from '@mozilla/readability'; +import Modal from './modal/AddUrl.vue'; const showMessage = ref(false) const feeds = ref([]); const message = ref('') -const buttonText = 'Sync' +const showModal = ref(false) + async function getReadable(feed, index) { try { const response = await axios.post("feeds/read", { @@ -153,18 +155,28 @@ onMounted(() => {
+ + + + + +

Feeds

{{ message }}

No unread articles.

-