Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/components/NcAppNavigationItem/NcAppNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ button will be automatically created.
```
<NcAppNavigationItem title="Item with actions" icon="icon-category-enabled">
<template #actions>
<ActionButton icon="icon-edit" @click="alert('Edit')">
<NcActionButton icon="icon-edit" @click="alert('Edit')">
Edit
</ActionButton>
<ActionButton icon="icon-delete" @click="alert('Delete')">
</NcActionButton>
<NcActionButton icon="icon-delete" @click="alert('Delete')">
Delete
</ActionButton>
<ActionLink icon="icon-external" title="Link" href="https://nextcloud.com" />
</NcActionButton>
<NcActionLink icon="icon-external" title="Link" href="https://nextcloud.com" />
</template>
</NcAppNavigationItem>
```
Expand All @@ -65,9 +65,9 @@ Just nest the counter in a template within `<NcAppNavigationItem>` and add `#cou
```
<NcAppNavigationItem title="Item with counter" icon="icon-folder">
<template #counter>
<CounterBubble>
<NcCounterBubble>
99+
</CounterBubble>
</NcCounterBubble>
</template>
</NcAppNavigationItem>
```
Expand Down