@deanwu/vue-component-library 1.2.22 → 1.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98148,6 +98148,7 @@ __webpack_require__.d(__webpack_exports__, "parseFile", function() { return /* r
98148
98148
  __webpack_require__.d(__webpack_exports__, "i18n", function() { return /* reexport */ components_i18n; });
98149
98149
  __webpack_require__.d(__webpack_exports__, "setLang", function() { return /* reexport */ setLang; });
98150
98150
  __webpack_require__.d(__webpack_exports__, "createStore", function() { return /* reexport */ createStore; });
98151
+ __webpack_require__.d(__webpack_exports__, "getStore", function() { return /* reexport */ getStore; });
98151
98152
  __webpack_require__.d(__webpack_exports__, "mapStore", function() { return /* reexport */ mapStore; });
98152
98153
 
98153
98154
  // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
@@ -102494,7 +102495,7 @@ function mapStore(data) {
102494
102495
  data.forEach(key => {
102495
102496
  res[key] = {
102496
102497
  get() {
102497
- return getStore(this)[key];
102498
+ return this.store[key];
102498
102499
  },
102499
102500
  set() {}
102500
102501
  };
@@ -102503,7 +102504,7 @@ function mapStore(data) {
102503
102504
  for (let key in data) {
102504
102505
  res[key] = {
102505
102506
  get() {
102506
- return data[key](getStore(this));
102507
+ return data[key](this.store);
102507
102508
  },
102508
102509
  set() {}
102509
102510
  };