We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently sub menus are implemented almost manually via:
<template v-if>
<NcActionButton is-menu>
It works, but:
Proposal: allow to use slots for additional menus like
<NcActions> <template #default> <NcActionButton menu="foo"> Sub-menu foo </NcActionButton> </template> <template #menu-foo> <!-- Content --> </template> </NcActions>
So that:
is-menu
The only thing I don't like here, is that we still have to check for the default slot for inline buttons...
inline
What do you think?
The text was updated successfully, but these errors were encountered:
ShGKme
Successfully merging a pull request may close this issue.
Currently sub menus are implemented almost manually via:
<template v-if>
<NcActionButton is-menu>
It works, but:
Proposal: allow to use slots for additional menus like
So that:
is-menu
buttons actually switch to another slot (just renders other buttons)The only thing I don't like here, is that we still have to check for the default slot for
inline
buttons...What do you think?
The text was updated successfully, but these errors were encountered: