Content between the tags <vue-particle> does not display.
Any elements I use between these
For example:
<vue-particle>
<p>This paragrapgh does not display</p>
</vue-particle>
mine doesn't show as well, need help
I think you should not put anything between vue-particle tag. just put it outside it.
using css to control the show
ie:
#particles-js { position: absolute; background-size: cover; top: 0; bottom: 0; left: 0; right: 0; overflow-y: hidden; z-index: 0; }
ill try this @yockii
Adding z-index: 999; or higher on the element inside the <vue-particle> works for me.
<template>
<div>
<vue-particles></vue-particles>
<h1>Hello World</h1>
</div>
</template>
<style scoped>
#particles-js {
position: absolute;
background: #323840;
left: 0;
right: 0;
top: -80px;
bottom: 0;
z-index: -1;
}
</style>
Did not work
that work for me!