35 lines
592 B
Vue
35 lines
592 B
Vue
<template>
|
|
<ul class="bar">
|
|
<NcAppNavigationNewItem :name="t('repod', 'Add a RSS link')"
|
|
@new-item="addSubscription">
|
|
<template #icon>
|
|
<Plus :size="20" />
|
|
</template>
|
|
</NcAppNavigationNewItem>
|
|
</ul>
|
|
</template>
|
|
|
|
<script>
|
|
import { NcAppNavigationNewItem } from '@nextcloud/vue'
|
|
import Plus from 'vue-material-design-icons/Plus.vue'
|
|
|
|
export default {
|
|
name: 'AddRss',
|
|
components: {
|
|
NcAppNavigationNewItem,
|
|
Plus,
|
|
},
|
|
methods: {
|
|
addSubscription(feedUrl) {
|
|
this.$router.push(btoa(feedUrl))
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.bar {
|
|
margin-top: 2rem;
|
|
}
|
|
</style>
|