@shijiu/jsview-vue 1.9.842 → 1.9.859

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": "@shijiu/jsview-vue",
3
- "version": "1.9.842",
3
+ "version": "1.9.859",
4
4
  "license": "MIT",
5
5
  "repository": "system/jsview-framework",
6
6
  "author": "mengxk",
@@ -6,6 +6,7 @@
6
6
  * @Description: file content
7
7
  -->
8
8
  <script>
9
+ import { ref } from "vue";
9
10
  import { getKeyFramesGroup } from "../../JsViewVueTools/JsvDynamicKeyFrames";
10
11
 
11
12
  const DECORATE_BORDER_RADIUS = "BroderRaidus";
@@ -104,8 +105,7 @@ export default {
104
105
  setup() {
105
106
  let styleShell = ref({})
106
107
  // 此处异步import为了处理在fadoration中导致的两个js互相import而加载异常问题。
107
- load = async function () {
108
- const getKeyFramesGroup = await import("../../JsViewVueTools");
108
+ const load = async function () {
109
109
  styleShell = getKeyFramesGroup();
110
110
  }
111
111
  load();
@@ -433,8 +433,8 @@ export default {
433
433
  <template>
434
434
  <div id="canvas">
435
435
  <div id="clip" :style="{...transform_style.clipStyle}">
436
- <div id="trans" :style="{...transform_style.transStyle}" :onAnimationEnd="onAnimEndDelegate">
437
- <div id="image" :style="{...transform_style.imageStyle, animation: blinkAnim}" :onAnimationEnd="onBlinkAnimEnd"></div>
436
+ <div id="trans" :style="{...transform_style.transStyle}" @animationend="onAnimEndDelegate">
437
+ <div id="image" :style="{...transform_style.imageStyle, animation: blinkAnim}" @animationend="onBlinkAnimEnd"></div>
438
438
  </div>
439
439
  </div>
440
440
  </div>