@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.
@@ -98157,6 +98157,7 @@ __webpack_require__.d(__webpack_exports__, "parseFile", function() { return /* r
98157
98157
  __webpack_require__.d(__webpack_exports__, "i18n", function() { return /* reexport */ components_i18n; });
98158
98158
  __webpack_require__.d(__webpack_exports__, "setLang", function() { return /* reexport */ setLang; });
98159
98159
  __webpack_require__.d(__webpack_exports__, "createStore", function() { return /* reexport */ createStore; });
98160
+ __webpack_require__.d(__webpack_exports__, "getStore", function() { return /* reexport */ getStore; });
98160
98161
  __webpack_require__.d(__webpack_exports__, "mapStore", function() { return /* reexport */ mapStore; });
98161
98162
 
98162
98163
  // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
@@ -102503,7 +102504,7 @@ function mapStore(data) {
102503
102504
  data.forEach(key => {
102504
102505
  res[key] = {
102505
102506
  get() {
102506
- return getStore(this)[key];
102507
+ return this.store[key];
102507
102508
  },
102508
102509
  set() {}
102509
102510
  };
@@ -102512,7 +102513,7 @@ function mapStore(data) {
102512
102513
  for (let key in data) {
102513
102514
  res[key] = {
102514
102515
  get() {
102515
- return data[key](getStore(this));
102516
+ return data[key](this.store);
102516
102517
  },
102517
102518
  set() {}
102518
102519
  };