Skip to content

Commit c62d3d3

Browse files
committed
feat: updates for v3
1 parent c49ca9f commit c62d3d3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

components/vue3/src/components/vue-particles.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
<script setup lang="ts">
66
import { nextTick, onMounted, onUnmounted } from "vue";
7-
import { type Engine, tsParticles } from "@tsparticles/engine";
8-
import type { Container, ISourceOptions } from "@tsparticles/engine";
7+
import { type Container, type ISourceOptions, type Engine, tsParticles } from "@tsparticles/engine";
98
109
export type IParticlesProps = ISourceOptions;
1110
@@ -40,8 +39,6 @@ const loadParticles = async () => {
4039
options: props.options,
4140
});
4241
43-
console.log(container?.particles.filter(() => true));
44-
4542
emit("particlesLoaded", container);
4643
};
4744

0 commit comments

Comments
 (0)