2023-07-07 14:35:14 +00:00
|
|
|
<template>
|
|
|
|
<ul>
|
2023-07-07 16:38:53 +00:00
|
|
|
<NcAppNavigationNewItem :title="t('Add a RSS link')">
|
2023-07-07 14:35:14 +00:00
|
|
|
<template #icon>
|
2023-07-07 16:38:53 +00:00
|
|
|
<Plus :size="20" />
|
2023-07-07 14:35:14 +00:00
|
|
|
</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: {
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|