@shijiu/jsview-vue 1.9.837 → 1.9.840

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.837",
3
+ "version": "1.9.840",
4
4
  "license": "MIT",
5
5
  "repository": "system/jsview-framework",
6
6
  "author": "mengxk",
@@ -102,7 +102,13 @@ export default {
102
102
  },
103
103
  },
104
104
  setup() {
105
- let styleShell = getKeyFramesGroup();
105
+ let styleShell = ref({})
106
+ // 此处异步import为了处理在fadoration中导致的两个js互相import而加载异常问题。
107
+ load = async function () {
108
+ const getKeyFramesGroup = await import("../../JsViewVueTools");
109
+ styleShell = getKeyFramesGroup();
110
+ }
111
+ load();
106
112
  return {
107
113
  styleShell,
108
114
  animName: "browser-texture-anim-" + TOKEN++,