Skip to content

Commit

Permalink
feat: updates for v3
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobruni committed Dec 21, 2023
1 parent c49ca9f commit c62d3d3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/vue3/src/components/vue-particles.vue
Expand Up @@ -4,8 +4,7 @@

<script setup lang="ts">
import { nextTick, onMounted, onUnmounted } from "vue";
import { type Engine, tsParticles } from "@tsparticles/engine";
import type { Container, ISourceOptions } from "@tsparticles/engine";
import { type Container, type ISourceOptions, type Engine, tsParticles } from "@tsparticles/engine";
export type IParticlesProps = ISourceOptions;
Expand Down Expand Up @@ -40,8 +39,6 @@ const loadParticles = async () => {
options: props.options,
});
console.log(container?.particles.filter(() => true));
emit("particlesLoaded", container);
};
Expand Down

0 comments on commit c62d3d3

Please sign in to comment.