A very strange bug
This is a reproduction of a very interesting bug that arises when using PrimeVue with Nuxt3. The Toast component duplicates elements in very specific circumstances. The FOOOOO title on the broken page is the thing being duplicated here.
Warning: Navigation on this version of Nuxt seems odd. You will need to refresh on each page after navigating, including navigating back to here via back button.
Examples:
- Broken
<template>
<Toast />
<div>
<h1>FOOOOO</h1>
</div>
</template>
- Working
<template>
<h1>FOOOOO</h1>
<Toast />
</template>
- Working 2
<template>
<div>
<Toast />
<h1>FOOOOO</h1>
</div>
</template>