Skip to content

Commit 552ad10

Browse files
author
leezng
authored
Merge pull request #98 from leezng/dev
Dev
2 parents 5a4ac3d + cb5329a commit 552ad10

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/bump-version.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414

1515
- name: Automated Version Bump
1616
uses: phips28/[email protected]
17-
with:
18-
major-wording: MAJOR
1917
env:
2018
GITHUB_USER: ${{ secrets.CI_NAME }}
2119
GITHUB_EMAIL: ${{ secrets.CI_EMAIL }}

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)