Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/__docs__/faq/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ Answer: Please ensure that when using v-for to render a list, the bound key valu

### Why is the update order not what I expected when using the v-draggable directive?

Answer: If the data is asynchronous, it is recommended to use a combined function or component. The v-draggable directive cannot detect data updates, resulting in sorting failure!
Answer: If the data is asynchronous, it is recommended to use a combined function or component. Because the vue directive cannot directly update the passed proxy data in reverse, the sorting fails.
2 changes: 1 addition & 1 deletion src/__docs__/faq/index.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ map:

### 为什么我在用v-draggable指令时,更新顺序并不是我的预期?

答:如果是异步的数据,建议使用组合式函数或者组件的方式,v-draggable指令无法检测到数据更新,导致排序失败!
答:如果是异步的数据,建议使用组合式函数或者组件的方式,因为vue指令内部不能直接对传递进来的代理数据进行反向更新,导致排序失效。