26 lines
419 B
Vue
26 lines
419 B
Vue
|
<template>
|
||
|
<ul>
|
||
|
<NcAppNavigationNewItem :title="t('', 'Add a RSS link')">
|
||
|
<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: {
|
||
|
|
||
|
},
|
||
|
}
|
||
|
</script>
|