wsfe / vue-tree

使用虚拟列表优化的 Vue 树组件 Vue tree component optimized using virtual list
https://wsfe.github.io/vue-tree/
MIT License
196 stars 38 forks source link

vue2下v-model不生效 #72

Closed nieyuyao closed 1 year ago

nieyuyao commented 1 year ago

Bug 描述

vue 2.6.14下,v-model不生效

复现步骤

https://stackblitz.com/edit/vitejs-vite-z2qafx?file=src%2Fmain.js,src%2FTreeDemo.vue,package.json,index.html

可以将stackblitz下载到本地,不清楚为什么stackblitz上会报错,会检测成vue3

期望表现 v-model可以正常使用

实际表现 v-model不生效

组件版本

额外信息

直接使用modelValue是可以的,猜测是兼容性的问题?

<VTree
      :modelValue="value"
      selectable
      draggable
      :data="data"
      clearable
      drop-placeholder="请选择"
      :dropdown-min-width="30"
      dropdown-width-fixed
    >
      <template #empty>slot 传进来的暂无数据</template>
    </VTree>
nieyuyao commented 1 year ago

可以使用modelValue来作为workaround