multiselect
multiselect copied to clipboard
Question: How to initially show Multiselect with Nuxt 3?
Hey, I'm using Multiselect with Nuxt 3. It's working fine, but the multiselect is popping up after a few seconds after the page has loaded. Is there a way to show it initially? I'm not sure if this belongs here or is rather a Nuxt question.
I'm using it like this:
multiselect.ts
import Multiselect from '@vueform/multiselect'
import '@vueform/multiselect/themes/default.css'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component("Multiselect", Multiselect)
})
<Multiselect
v-model="selectedGoals"
:options="goals"
mode="tags"
placeholder="Placeholder..."
:close-on-select="false"
/>
Thankful for any help!