作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何更改 b-dropdown-component 中 b-dropdown-item-button 的行为,使其在我单击时不会自动关闭?
下拉菜单的句法结构如下:
<b-dropdown>
<b-dropdown-item-button>
<span>Mark as read</span>
<b-dropdown-item-button>
<b-dropdown-group>
// Messages are output here
</b-dropdown-group>
</bdropdown>
现在我想知道如何在单击 b-dropdown-item-button 时防止下拉菜单关闭。
最佳答案
配售@click.native.capture.stop
<b-dropdown>
的任何子组件上的指令将阻止它关闭下拉菜单。
例如:
<b-dropdown>
<b-dropdown-item-button @click.native.capture.stop>
<span>Mark as read</span>
<b-dropdown-item-button>
<b-dropdown-group @click.native.capture.stop>
// no click will exit the parent, therefore they won't close the dropdown
</b-dropdown-group>
</bdropdown>
关于vue.js - 单击后防止 Vue bootstrap-dropdown 关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61328985/
我是一名优秀的程序员,十分优秀!