Skip to content

Cannot set properties of null (setting '__draggable_context') #145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
readme
  • Loading branch information
zhyswan committed May 5, 2022
commit 5aac05e156ee17c4651094af1f9afaf28adfbc78
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ The `item` slot should be used to display items of the list. It receives the ele
``` html
<draggable v-model="myArray" tag="transition-group" item-key="id">
<template #item="{element}">
<div>
<div> {{element.name}} </div>
</div>
<div>
<div> {{element.name}} </div>
</div>
</template>
</draggable>
```
Expand Down