35 lines
627 B
Vue
35 lines
627 B
Vue
<template>
|
|
<ul>
|
|
<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'
|
|
import { encodeUrl } from '../../utils/url.js'
|
|
|
|
export default {
|
|
name: 'AddRss',
|
|
components: {
|
|
NcAppNavigationNewItem,
|
|
Plus,
|
|
},
|
|
methods: {
|
|
addSubscription(feedUrl) {
|
|
this.$router.push(encodeUrl(feedUrl))
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
ul {
|
|
margin-top: 2rem;
|
|
}
|
|
</style>
|