@dolphinweex/weex-harmony 0.1.62 → 0.1.63

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": "@dolphinweex/weex-harmony",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "description": "weex harmony adapter",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -49,13 +49,13 @@ export default {
49
49
  type: Boolean,
50
50
  default: false,
51
51
  },
52
- videoCover: {
53
- type: String,
54
- default: "",
55
- },
56
52
  loop: {
57
53
  type: Boolean,
58
54
  default: false,
55
+ },
56
+ playStatus:{
57
+ type: String,
58
+ default: "",
59
59
  }
60
60
  },
61
61
  computed: {
@@ -74,8 +74,9 @@ export default {
74
74
  finish: this.finish,
75
75
  objectFit: this.objectFit,
76
76
  muted: this.muted,
77
- videoCover: this.videoCover,
78
- loop: this.loop
77
+ loop: this.loop,
78
+ appear: this.appear,
79
+ playStatus: this.playStatus
79
80
  };
80
81
  },
81
82
  },
@@ -107,6 +108,9 @@ export default {
107
108
  finish(event) {
108
109
  this.$emit("finish", event || {});
109
110
  },
111
+ appear(event) {
112
+ this.$emit("appear", event || {});
113
+ },
110
114
  },
111
115
  };
112
116
  </script>