Skip to content

Commit

Permalink
build: post merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobruni committed Mar 6, 2024
1 parent 465e16f commit 501264d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions components/vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
"typecheck": "vue-tsc --noEmit",
"lint": "echo eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"files": [
"dist",
"README.md"
],
"repository": {
"url": "https://github.com/tsparticles/vue3",
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion components/vue3/src/components/vue-particles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
</template>

<script setup lang="ts">
import { nextTick, onMounted, onUnmounted } from "vue";
import { type Container, type ISourceOptions, type Engine, tsParticles } from "@tsparticles/engine";
import { nextTick, onMounted, onUnmounted } from "vue";
export type IParticlesProps = ISourceOptions;
Expand Down Expand Up @@ -58,6 +58,7 @@ onUnmounted(() => {
}
container.destroy();
container = undefined;
});
</script>

0 comments on commit 501264d

Please sign in to comment.