如何在VUE中禁用标头的前两列
我正在尝试为第一个2列禁用可拖动功能,我在可拖动中尝试了选项
:options="{disabled : 'Subject'}"
,但它禁用所有标题可拖动功能
<thead class="not-as-small helpdesk-ticket-head">
<draggable
v-model="headerColumn"
tag="tr"
v-bind="dragOptions"
>
<th
v-for="(header, index) in selectedColumnsHeader"
:key="header.title"
:class="{ 'table-data--sticky': stickyColumns(index) }"
scope="col"
>
{{ header.title }}
</th>
</draggable>
</thead>
I am trying to disable draggable function for first 2 column i tried options in draggable
:options="{disabled : 'Subject'}"
but it disable the all header draggable functionality
<thead class="not-as-small helpdesk-ticket-head">
<draggable
v-model="headerColumn"
tag="tr"
v-bind="dragOptions"
>
<th
v-for="(header, index) in selectedColumnsHeader"
:key="header.title"
:class="{ 'table-data--sticky': stickyColumns(index) }"
scope="col"
>
{{ header.title }}
</th>
</draggable>
</thead>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加拖放方法:移动该检查标题标题(如果与主题匹配)将返回false,并且将无法拖动
Add method in draggable :move that check the header title if it match with subject it will return false and it will not be able to drag