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.
notMerge: true
1 parent 157a66b commit 7aa9edcCopy full SHA for 7aa9edc
src/ECharts.ts
@@ -86,9 +86,10 @@ export default defineComponent({
86
const realInitOptions = computed(
87
() => props.initOptions || unref(defaultInitOptions) || {}
88
);
89
- const realUpdateOptions = computed(
90
- () => props.updateOptions || unref(defaultUpdateOptions) || {}
91
- );
+ const realUpdateOptions = computed(() => ({
+ ...(props.updateOptions || unref(defaultUpdateOptions) || {}),
+ notMerge: true
92
+ }));
93
const nonEventAttrs = computed(() => omitOn(attrs));
94
95
function init(option?: Option) {
0 commit comments