Skip to content

Commit 27d0fe2

Browse files
authored
Merge pull request #2150 from adumesny/master
vue doc tweaks
2 parents c3cc15e + a9d85d2 commit 27d0fe2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

demo/vue3js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1>How to integrate GridStack.js with Vue.js</h1>
3535
setup() {
3636
let count = ref(0);
3737
let info = ref("");
38-
let grid = null; // DO NOT use ref(NULL) as proxies GS will break all logic when comparing structures... see https://github.com/gridstack/gridstack.js/issues/2115
38+
let grid = null; // DO NOT use ref(null) as proxies GS will break all logic when comparing structures... see https://github.com/gridstack/gridstack.js/issues/2115
3939
const items = [
4040
{ x: 2, y: 1, h: 2 },
4141
{ x: 2, y: 4, w: 3 },

demo/vue3js_v-for.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1>How to integrate GridStack.js with Vue.js</h1>
5656
let gridFloat = ref(false);
5757
let color = ref("black");
5858
let gridInfo = ref("");
59-
let grid = null; // DO NOT use ref(NULL) as proxies GS will break all logic when comparing structures... see https://github.com/gridstack/gridstack.js/issues/2115
59+
let grid = null; // DO NOT use ref(null) as proxies GS will break all logic when comparing structures... see https://github.com/gridstack/gridstack.js/issues/2115
6060
let items = ref([]);
6161

6262
onMounted(() => {

0 commit comments

Comments
 (0)