Quasar QSelect 上的事件修改器删除事件

发布于 2025-01-11 23:57:53 字数 339 浏览 0 评论 0原文

我想有条件地从选择中删除一个选项。我尝试使用 @remove 事件,但在检查之前我无法停止删除事件...我想做下面的事情;

<q-select @remove.stop="isItRemovable"></q-select>
.
.
.
methods: {
  isItRemovable(option) {
    if (option.value.name === 'yes removable') {
        remove
    } else {
       show not removable warning
    }
  }
}

我该怎么做?比你。

I want to remove an option from selection conditionally.. I tried to use @remove event but I couldn't stop remove event before my check... I want to do something below;

<q-select @remove.stop="isItRemovable"></q-select>
.
.
.
methods: {
  isItRemovable(option) {
    if (option.value.name === 'yes removable') {
        remove
    } else {
       show not removable warning
    }
  }
}

how can i do this? than you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

廻憶裏菂餘溫 2025-01-18 23:57:53

我遇到了同样的问题,并找到了一个肮脏的解决方案

function onRemove(details) {
  setTimeout(()=>{
    tags.value.splice(details.index, 0, details.value as never);
  }, 1) // yes this is very dirty, but it seems to me there is no better way with current Quasar API
}

,其中 tags 是用作 v-modelref ,并且此函数用作事件回调:@remove="onRemove"
这将防止删除任何项目,但当然您可以添加任何条件。副作用:元素闪烁一毫秒。

I encountered the same problem and figured out a dirty solution

function onRemove(details) {
  setTimeout(()=>{
    tags.value.splice(details.index, 0, details.value as never);
  }, 1) // yes this is very dirty, but it seems to me there is no better way with current Quasar API
}

Where tags is your ref used as v-model and this function is used as event callback: @remove="onRemove".
This will prevent any item removal, but of course you can add any conditions. Side effect: element blinks for a millisecond.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文