vue-treeselect禁用根节点
时间: 2023-11-03 18:04:39 浏览: 181
要禁用Vue Treeselect的根节点,您需要使用prop `disable-root`。 将其设置为`true`将禁用根节点。 以下是一个示例:
```html
<template>
<treeselect v-model="value" :options="options" :disable-root="true"></treeselect>
</template>
<script>
import Treeselect from '@riophae/vue-treeselect'
export default {
components: {
Treeselect,
},
data() {
return {
value: null,
options: [
{
id: 1,
label: 'Node 1',
children: [
{
id: 2,
label: 'Node 1.1',
},
{
id: 3,
label: 'Node 1.2',
},
],
},
],
}
},
}
</script>
```
在上面的示例中,`disable-root`被设置为`true`,因此根节点将被禁用。
阅读全文