Skip to content

Commit 5ba932a

Browse files
committed
Release version 1.0.2
1 parent af38702 commit 5ba932a

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

dist/vue-component-store.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,15 @@
9696
}
9797
}
9898
}
99-
});
99+
}); // Custom optionMergeStrategies to support mixins.
100+
101+
for (var _i2 = 0, _arr2 = ['provideFields', 'injectFields', 'provideMethods', 'injectMethods']; _i2 < _arr2.length; _i2++) {
102+
var name = _arr2[_i2];
103+
104+
Vue.config.optionMergeStrategies[name] = function (a, b) {
105+
return a && b ? a.concat(b) : a || b;
106+
};
107+
}
100108
}
101109
};
102110

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-component-store",
33
"description": "Plugin for keeping the state of your Vue.js application inside components.",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"keywords": [
66
"vue",
77
"vuex",

0 commit comments

Comments
 (0)