Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a06c6 commit f8cc359Copy full SHA for f8cc359
demo/index.html
@@ -18,8 +18,8 @@ <h1>Demos</h1>
18
<li><a href="serialization.html">Serialization</a></li>
19
<li><a href="static.html">Static</a></li>
20
<li><a href="two.html">Two grids</a></li>
21
- <li><a href="vuej2s.html">Vue2.js</a></li>
22
- <li><a href="vuej3s.html">Vue3.js</a></li>
+ <li><a href="vue2js.html">Vue2.js</a></li>
+ <li><a href="vue3js.html">Vue3.js</a></li>
23
</ul>
24
</body>
25
</html>
demo/static.html
@@ -31,10 +31,10 @@ <h1>Static vs can move/drag Demo</h1>
31
32
let serializedData = [
33
{x: 0, y: 0, width: 2, height: 2, id: '0'},
34
- {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'},
35
{x: 4, y: 1, width: 1, height: 1, id: '2'},
36
- {x: 2, y: 3, width: 3, height: 1, id: 'no_resize', noResize: true, html: 'no resize'},
37
- {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'}
38
];
39
grid.load(serializedData, true);
40
0 commit comments