Skip to content

Commit b86280e

Browse files
committed
fix: cleaned up the console.log call sneaked in by mistake
1 parent 6159c7d commit b86280e

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.5.4
2+
3+
* Cleaned up the `console.log` call sneaked in by mistake.
4+
15
## 6.5.3
26

37
* Fixed default behavior for `notMerge` option (#691).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
227227
```html
228228
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
229229
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
230-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
230+
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
231231
```
232232
<!-- vue3Scripts:end -->
233233

@@ -247,7 +247,7 @@ app.component('v-chart', VueECharts)
247247
```html
248248
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
249249
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
250-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
250+
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
251251
```
252252
<!-- vue2Scripts:end -->
253253

README.zh-Hans.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ import "echarts";
227227
```html
228228
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
229229
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
230-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
230+
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
231231
```
232232
<!-- vue3Scripts:end -->
233233

@@ -247,7 +247,7 @@ app.component('v-chart', VueECharts)
247247
```html
248248
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
249249
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
250-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
250+
<script src="https://cdn.jsdelivr.net/npm/[email protected].4"></script>
251251
```
252252
<!-- vue2Scripts:end -->
253253

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-echarts",
3-
"version": "6.5.3",
3+
"version": "6.5.4",
44
"description": "Vue.js component for Apache ECharts.",
55
"author": "GU Yiling <[email protected]>",
66
"scripts": {

src/ECharts.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ export default defineComponent({
232232
if (!chart.value) {
233233
init();
234234
} else {
235-
console.log(`notMerge: ${option !== oldOption}`);
236235
chart.value.setOption(option, {
237236
// mutating `option` will lead to `notMerge: false` and
238237
// replacing it with new reference will lead to `notMerge: true`

0 commit comments

Comments
 (0)