@dcloudio/vue-cli-plugin-uni 2.0.1-alpha-33820220118001 → 2.0.1-alpha-33820220118002

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/vue-cli-plugin-uni",
3
- "version": "2.0.1-alpha-33820220118001",
3
+ "version": "2.0.1-alpha-33820220118002",
4
4
  "description": "uni-app plugin for vue-cli 3",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  "author": "fxy060608",
18
18
  "license": "Apache-2.0",
19
19
  "dependencies": {
20
- "@dcloudio/uni-stat": "^2.0.1-alpha-33820220118001",
20
+ "@dcloudio/uni-stat": "^2.0.1-alpha-33820220118002",
21
21
  "buffer-json": "^2.0.0",
22
22
  "clone-deep": "^4.0.1",
23
23
  "copy-webpack-plugin": "^5.1.1",
@@ -39,5 +39,5 @@
39
39
  "wrap-loader": "^0.2.0",
40
40
  "xregexp": "4.0.0"
41
41
  },
42
- "gitHead": "72093467a67e62aca16e80ff02f0683e729be75b"
42
+ "gitHead": "c109a58cdc4ecf3b49bf256fbec6d570c3c110e1"
43
43
  }
@@ -5827,9 +5827,10 @@ function internalMixin(Vue) {
5827
5827
 
5828
5828
  Vue.prototype.$emit = function(event) {
5829
5829
  if (this.$scope && event) {
5830
- (this.$scope['_triggerEvent'] || this.$scope['triggerEvent'])(event, {
5831
- __args__: toArray(arguments, 1)
5832
- });
5830
+ (this.$scope['_triggerEvent'] || this.$scope['triggerEvent'])
5831
+ .call(this.$scope, event, {
5832
+ __args__: toArray(arguments, 1)
5833
+ })
5833
5834
  }
5834
5835
  return oldEmit.apply(this, arguments)
5835
5836
  };
@@ -5893,7 +5894,7 @@ function internalMixin(Vue) {
5893
5894
  if (!target) {
5894
5895
  target = this;
5895
5896
  }
5896
- // 解决动态属性添加
5897
+ // 解决动态属性添加
5897
5898
  Vue.set(target, key, value)
5898
5899
  };
5899
5900
 
@@ -5901,7 +5902,7 @@ function internalMixin(Vue) {
5901
5902
  if (!target) {
5902
5903
  target = this;
5903
5904
  }
5904
- // 解决动态属性添加
5905
+ // 解决动态属性添加
5905
5906
  Vue.set(target, key, value)
5906
5907
  };
5907
5908