Skip to content

Commit 8b4a0df

Browse files
committed
major: pre release next.
1 parent c420625 commit 8b4a0df

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

example/Basic.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default defineComponent({
112112
try {
113113
state.data = JSON.parse(newVal);
114114
} catch (err) {
115-
console.log('JSON ERROR');
115+
// console.log('JSON ERROR');
116116
}
117117
},
118118
);

example/SelectControl.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ export default defineComponent({
149149
});
150150
151151
const handleClick = (path, data) => {
152-
console.log('click: ', path, data);
152+
// console.log('click: ', path, data);
153153
state.itemPath = path;
154154
state.itemData = !data ? data + '' : data; // 处理 data = null 的情况
155155
};
156156
157157
const handleChange = (newVal, oldVal) => {
158-
console.log('newVal: ', newVal, ' oldVal: ', oldVal);
158+
// console.log('newVal: ', newVal, ' oldVal: ', oldVal);
159159
};
160160
161161
const customLinkFormatter = (data, key, path, defaultFormatted) => {
@@ -172,7 +172,7 @@ export default defineComponent({
172172
try {
173173
state.data = JSON.parse(newVal);
174174
} catch (err) {
175-
console.log('JSON ERROR');
175+
// console.log('JSON ERROR');
176176
}
177177
},
178178
);

example/VirtualList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default defineComponent({
7272
try {
7373
state.data = JSON.parse(newVal);
7474
} catch (err) {
75-
console.log('JSON ERROR');
75+
// console.log('JSON ERROR');
7676
}
7777
},
7878
);

0 commit comments

Comments
 (0)