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.
2 parents 192c35a + 7d8ebe2 commit 1e91e9aCopy full SHA for 1e91e9a
demo/vue3js_v-for.html
@@ -37,7 +37,7 @@ <h1>How to integrate GridStack.js with Vue.js</h1>
37
38
<div class="grid-stack">
39
<div v-for="(w, indexs) in items" class="grid-stack-item" :gs-x="w.x" :gs-y="w.y" :gs-w="w.w" :gs-h="w.h"
40
- :gs-id="w.id" :id="w.id">
+ :gs-id="w.id" :id="w.id" :key="w.id">
41
<div class="grid-stack-item-content">
42
<button @click="remove(w)">remove</button>
43
{{w}}
@@ -160,4 +160,4 @@ <h1>How to integrate GridStack.js with Vue.js</h1>
160
</script>
161
</body>
162
163
-</html>
+</html>
0 commit comments