diff --git a/demo/index.html b/demo/index.html index 49b9a5dac..9c3c9dce4 100644 --- a/demo/index.html +++ b/demo/index.html @@ -18,8 +18,8 @@

Demos

  • Serialization
  • Static
  • Two grids
  • -
  • Vue2.js
  • -
  • Vue3.js
  • +
  • Vue2.js
  • +
  • Vue3.js
  • diff --git a/demo/static.html b/demo/static.html index 9058c43b3..1db9afc78 100644 --- a/demo/static.html +++ b/demo/static.html @@ -31,10 +31,10 @@

    Static vs can move/drag Demo

    let serializedData = [ {x: 0, y: 0, width: 2, height: 2, id: '0'}, - {x: 3, y: 1, width: 1, height: 2, id: 'no_move', noMove: true, html: 'no move'}, + {x: 3, y: 1, width: 1, height: 2, id: 'no_move', noMove: true, content: 'no move'}, {x: 4, y: 1, width: 1, height: 1, id: '2'}, - {x: 2, y: 3, width: 3, height: 1, id: 'no_resize', noResize: true, html: 'no resize'}, - {x: 1, y: 3, width: 1, height: 1, id: 'locked', locked: true, html: 'locked'} + {x: 2, y: 3, width: 3, height: 1, id: 'no_resize', noResize: true, content: 'no resize'}, + {x: 1, y: 3, width: 1, height: 1, id: 'locked', locked: true, content: 'locked'} ]; grid.load(serializedData, true);