【问题标题】:Prevent button being focused (VueJS, Buefy)防止按钮被聚焦(VueJS,Buefy)
【发布时间】:2020-10-23 03:47:20
【问题描述】:

只是想防止我的一个buefy按钮在我点击它时被聚焦:

按钮代码:

<b-button class="button-rounded" type="is-success" icon-right="film" rounded />

不专注:

专注:

在我的用例中,我在按钮上添加的其他设计被焦点清除,我想在单击按钮时阻止任何焦点。我正在使用带有 Buefy (Bulma) 的 VueJS 2

有什么想法吗?

提前致谢

【问题讨论】:

    标签: vue.js vuejs2 buefy


    【解决方案1】:

    <b-button tabindex="-1" class="button-rounded" type="is-success" icon-right="film" rounded />
    

    做这个伎俩?

    【讨论】:

    • 很遗憾没有:(
    • 如果与触发函数一起触发按钮上的 blur() 会怎样? &lt;b-button @click="this.blur()" class="button-rounded" type="is-success" icon-right="film" rounded /&gt;
    • 对不起,我忘了回复,这也不起作用:/