@smallwei/avue 3.8.3 → 3.8.4
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/dist/avue.js +5 -4
- package/dist/avue.js.map +1 -1
- package/dist/avue.min.js +2 -2
- package/es/packages/element-plus/count-up/index.vue +7 -5
- package/es/version.mjs +1 -1
- package/es/version.ts +1 -1
- package/lib/packages/element-plus/count-up/index.vue +7 -5
- package/lib/version.js +1 -1
- package/lib/version.ts +1 -1
- package/package.json +1 -1
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
<span>{{end}}</span>
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
|
-
<script>
|
|
6
|
-
import
|
|
7
|
-
import create from "../../../core/create.mjs";
|
|
8
|
-
|
|
5
|
+
<script>
|
|
6
|
+
import * as CountUpModule from "countup.js";
|
|
7
|
+
import create from "../../../core/create.mjs";
|
|
8
|
+
|
|
9
|
+
const CountUp = CountUpModule.default || CountUpModule;
|
|
10
|
+
export default create({
|
|
9
11
|
name: "count-up",
|
|
10
12
|
props: {
|
|
11
13
|
animation: {
|
|
@@ -104,4 +106,4 @@ export default create({
|
|
|
104
106
|
},
|
|
105
107
|
|
|
106
108
|
});
|
|
107
|
-
</script>
|
|
109
|
+
</script>
|
package/es/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.8.
|
|
1
|
+
export const version = '3.8.4';
|
package/es/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.8.
|
|
1
|
+
export const version = '3.8.4'
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
<span>{{end}}</span>
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
|
-
<script>
|
|
6
|
-
import
|
|
7
|
-
import create from "../../../core/create.js";
|
|
8
|
-
|
|
5
|
+
<script>
|
|
6
|
+
import * as CountUpModule from "countup.js";
|
|
7
|
+
import create from "../../../core/create.js";
|
|
8
|
+
|
|
9
|
+
const CountUp = CountUpModule.default || CountUpModule;
|
|
10
|
+
export default create({
|
|
9
11
|
name: "count-up",
|
|
10
12
|
props: {
|
|
11
13
|
animation: {
|
|
@@ -104,4 +106,4 @@ export default create({
|
|
|
104
106
|
},
|
|
105
107
|
|
|
106
108
|
});
|
|
107
|
-
</script>
|
|
109
|
+
</script>
|
package/lib/version.js
CHANGED
package/lib/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.8.
|
|
1
|
+
export const version = '3.8.4'
|