[Vuejs]-Selecting one item closes the other dropdown

1👍

Use the open-strategy prop as multiple.

Demo

<template>
  <v-card class="mx-auto" width="300">
    <v-list v-model:opened="open" open-strategy="multiple">
      ...
    </v-list>
  </v-card>
</template>

Leave a comment