diff --git a/docs/src/demos/Examples/DragHandle/Component.vue b/docs/src/demos/Examples/DragHandle/Component.vue index e6fb04d5..1424fffc 100644 --- a/docs/src/demos/Examples/DragHandle/Component.vue +++ b/docs/src/demos/Examples/DragHandle/Component.vue @@ -37,6 +37,7 @@ export default { padding: 0.5rem; margin: 0.5rem 0; border-radius: 0.5rem; + background: white; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 10px 20px rgba(0, 0, 0, 0.1), diff --git a/docs/src/demos/Examples/DragHandle/DraggableItem.js b/docs/src/demos/Examples/DragHandle/DraggableItem.js index 6f289e50..0b6a51bb 100644 --- a/docs/src/demos/Examples/DragHandle/DraggableItem.js +++ b/docs/src/demos/Examples/DragHandle/DraggableItem.js @@ -11,16 +11,6 @@ export default Node.create({ draggable: true, - selectable: true, - - addAttributes() { - return { - checked: { - default: false, - }, - } - }, - parseHTML() { return [ { diff --git a/docs/src/demos/Examples/DragHandle/index.vue b/docs/src/demos/Examples/DragHandle/index.vue index 24ffb012..99745b7a 100644 --- a/docs/src/demos/Examples/DragHandle/index.vue +++ b/docs/src/demos/Examples/DragHandle/index.vue @@ -5,12 +5,7 @@