如何在 Particles.js Nuxt 3 中添加元素?

问题描述 投票:0回答:1

我在我的项目

particles.js
中添加了
nuxt 3
,我使用了https://github.com/Joepocalyptic/nuxt-articles, 但是当我在
<NuxtParticles>
中添加任何元素时,该元素不会出现

// app.vue
<template>
  <NuxtParticles
    id="tsparticles"
    :options="options"
    @load="onLoad"
    class="h-2/4"
  >
  <p class="text-white z-10">sheikh el moctar </p>
  <Navbar/>
  </NuxtParticles>
</template>


解决办法是什么?

Sheikh el moctar
没有出现 我尝试使用 css 控制粒子,但我确实找到了任何结果

vue.js vuejs3 nuxt.js nuxtjs3 particles.js
1个回答
0
投票

您可以从这里检查 vue3 的粒子包 https://github.com/tsarticles/vue3

© www.soinside.com 2019 - 2024. All rights reserved.