@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
|
@@ -102,7 +102,13 @@ export default {
|
|
|
102
102
|
},
|
|
103
103
|
},
|
|
104
104
|
setup() {
|
|
105
|
-
let styleShell =
|
|
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++,
|