@shijiu/jsview-vue-samples 1.9.843 → 1.9.860

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.
@@ -65,7 +65,7 @@ props.onAction.register("onClick", onClick);
65
65
  transformStyle: 'preserve-3d',
66
66
  backgroundColor: '#FFFF00',
67
67
  }"
68
- :onAnimationEnd="onFlipped"
68
+ @animationend="onFlipped"
69
69
  >
70
70
  <div
71
71
  :style="{
@@ -101,7 +101,7 @@ defineExpose({
101
101
 
102
102
  <div
103
103
  :style="{
104
- visibility: this.focused ? 'visible' : 'hidden',
104
+ visibility: focused ? 'visible' : 'hidden',
105
105
  left: 50 * focusIndex,
106
106
  width: 10,
107
107
  height: 10,
@@ -79,7 +79,7 @@ props.onAction.register("onBlur", onBlur);
79
79
 
80
80
  <div
81
81
  :style="{
82
- visibility: this.focused ? 'visible' : 'hidden',
82
+ visibility: focused ? 'visible' : 'hidden',
83
83
  left: 50 * focusIndex,
84
84
  width: 10,
85
85
  height: 10,
@@ -187,7 +187,7 @@ export default {
187
187
  animation: page0Anim.anim,
188
188
  animationFillMode: 'forwards',
189
189
  }"
190
- :onAnimationEnd="page0Anim.onend"
190
+ @animationend="page0Anim.onend"
191
191
  >
192
192
  <app-page
193
193
  v-if="page0Show"
@@ -201,7 +201,7 @@ export default {
201
201
  animation: page1Anim.anim,
202
202
  animationFillMode: 'forwards',
203
203
  }"
204
- :onAnimationEnd="page1Anim.onend"
204
+ @animationend="page1Anim.onend"
205
205
  >
206
206
  <app-page
207
207
  v-if="page1Show"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shijiu/jsview-vue-samples",
3
- "version": "1.9.843",
3
+ "version": "1.9.860",
4
4
  "license": "MIT",
5
5
  "repository": "system/jsview-framework",
6
6
  "author": "mengxk",