Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

enh(NcAppNavigationCaption): Forward listeners #4494

Merged
merged 1 commit into from Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/components/NcAppNavigationCaption/NcAppNavigationCaption.vue
Expand Up @@ -91,7 +91,8 @@
<!-- Actions -->
<div v-if="hasActions"
class="app-navigation-caption__actions">
<NcActions v-bind="$attrs">
<NcActions v-bind="$attrs"
v-on="$listeners">
<!-- @slot Slot for the actions menu -->
<slot name="actions" />
<template #icon>
Expand All @@ -111,11 +112,21 @@ export default {
components: {
NcActions,
},

inheritAttrs: false,

props: {
name: {
type: String,
required: true,
},

/**
* Any [NcActions](#/Components/NcActions?id=ncactions-1) prop
*/
// Not an actual prop but needed to show in vue-styleguidist docs
// eslint-disable-next-line
' ': {},
},

computed: {
Expand Down